使用系统;
使用系统.IO;
使用系统.Web;
命名空间SEC
{
/**//// <摘要>
/// 对文件和文件夹的操作类
/// </摘要>
公共类文件控件
{
公共文件控件()
{
}
/**//// <摘要>
/// 在根目录下创建文件夹
/// </摘要>
/// <param name="FolderPath">要创建的文件路径</param>
公共无效CreateFolder(字符串FolderPathName)
{
if(FolderPathName.Trim().Length>0)
{
尝试
{
string CreatePath = System.Web.HttpContext.Current.Server.MapPath
("../../../Images/"+FolderPathName).ToString();
if(!Directory.Exists(CreatePath))
{
目录.CreateDirectory(CreatePath);
}
}
抓住
{
扔;
}
}
}
/**//// <摘要>
/// 删除一个文件夹下面的字文件夹和文件
/// </摘要>
/// <param name="FolderPathName"></param>
公共无效DeleteChildFolder(字符串FolderPathName)
{
if(FolderPathName.Trim().Length>0)
{
尝试
{
字符串CreatePath = System.Web.HttpContext.Current.Server.MapPath
(FolderPathName).ToString();
if(目录.Exists(CreatePath))
{
目录.Delete(CreatePath,true);
}
}
抓住
{
扔;
}
}
}
/**//// <摘要>
/// 删除一个文件
/// </摘要>
/// <param name="FilePathName"></param>
公共无效删除文件(字符串文件路径名)
{
尝试
{
FileInfo DeleFile = new FileInfo(System.Web.HttpContext.Current.Server.MapPath
(FilePathName).ToString());
删除文件.Delete();
}
抓住
{
}
}
公共无效CreateFile(字符串文件路径名)
{
尝试
{
//创建文件夹
string[] strPath= FilePathName.Split('/');
CreateFolder(FilePathName.Replace("/" + strPath[strPath.Length-1].ToString(),"")); //创建文件
夹
FileInfo CreateFile =new FileInfo(System.Web.HttpContext.Current.Server.MapPath
(FilePathName).ToString()); //创建文件
if(!CreateFile.Exists)
{
FileStream FS=CreateFile.Create();
FS.Close();
}
}
抓住
{
}
}
/**//// <摘要>
/// 删除整个文件夹及其字文件夹和文件
/// </摘要>
/// <param name="FolderPathName"></param>
公共无效DeleParentFolder(字符串FolderPathName)
{
尝试
{
DirectoryInfo DelFolder = new DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath
(FolderPathName).ToString());
if(DelFolder.存在)
{
DelFolder.Delete();
}
}
抓住
{
}
}
/**//// <摘要>
/// 在文件里追加内容
/// </摘要>
/// <param name="FilePathName"></param>
公共无效ReWriteReadinnerText(字符串文件路径名,字符串WriteWord)
{
尝试
{
//建立文件夹和文件
//创建文件夹(文件路径名);
创建文件(文件路径名);
//获取原来文件的内容
FileStream FileRead=new FileStream(System.Web.HttpContext.Current.Server.MapPath
(FilePathName).ToString(),FileMode.Open,FileAccess.ReadWrite);
StreamReader FileReadWord=new StreamReader(FileRead,System.Text.Encoding.Default);
字符串 OldString = FileReadWord.ReadToEnd().ToString();
旧字符串 = 旧字符串 + WriteWord;
//把新的内容重新写入
StreamWriter FileWrite=new StreamWriter(FileRead,System.Text.Encoding.Default);
文件写入.Write(WriteWord);
//关闭
文件写入.关闭();
FileReadWord.Close();
文件读取.关闭();
}
抓住
{
// 扔;
}
}
/**//// <摘要>
/// 在文件里补充内容
/// </摘要>
/// <param name="FilePathName"></param>
公共字符串ReaderFileData(字符串文件路径名称)
{
尝试
{
FileStream FileRead=new FileStream(System.Web.HttpContext.Current.Server.MapPath
(FilePathName).ToString(),FileMode.Open,FileAccess.Read);
StreamReader FileReadWord=new StreamReader(FileRead,System.Text.Encoding.Default);
字符串 TxtString = FileReadWord.ReadToEnd().ToString();
//关闭
FileReadWord.Close();
文件读取.关闭();
返回文本字符串;
}
抓住
{
扔;
}
}
/**//// <摘要>
/// 读取文件夹的文件
/// </摘要>
/// <param name="FilePathName"></param>
/// <返回></返回>
公共 DirectoryInfo checkValidSessionPath(字符串 FilePathName)
{
尝试
{
DirectoryInfo MainDir = new DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath
(FilePathName));
返回主目录;
}
抓住
{
扔;
}
}
}
}