first commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Web;
|
||||
|
||||
/// <summary>
|
||||
/// Nameing 的摘要说明
|
||||
/// </summary>
|
||||
|
||||
public class MyNameTransfom : ICSharpCode.SharpZipLib.Core.INameTransform
|
||||
{
|
||||
|
||||
|
||||
#region INameTransform 成员
|
||||
|
||||
|
||||
public string TransformDirectory(string name)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
public string TransformFile(string name)
|
||||
{
|
||||
return Path.GetFileName(name);
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
}
|
||||
Reference in New Issue
Block a user