using System;
using System.IO;
using System.Web;
namespace SEC
{
/**//// <summary>
/// 对文件和文件夹的操作类
/// </summary>
public class FileControl
{
public FileControl()
{
}
/**//// <summary>
/// 在根目录下创建文件夹
/// </summary>
/// <param name="FolderPath">要创建的文件路径</param>
public void CreateFolder(string FolderPathName)
{
if(FolderPathName.Trim().Length>0)
{
try
{
string CreatePath = System.Web.HttpContext.Current.Server.MapPath
("../../../Images/"+FolderPathName).ToString();
if(!Directory.Exists(CreatePath))
{
Directory.CreateDirectory(CreatePath);
}
}
catch
{
throw;
}
}
}
/**//// <summary>
/// 删除一个文件夹下面的字文件夹和文件
/// </summary>
/// <param name="FolderPathName"></param>
public void DeleteChildFolder(string FolderPathName)
{
if(FolderPathName.Trim().Length>0)
{
try
{
string CreatePath = System.Web.HttpContext.Current.Server.MapPath
(FolderPathName).ToString();
if(Directory.Exists(CreatePath))
{
Directory.Delete(CreatePath,true);
}
}
catch
{
throw;
}
}
}
/**//// <summary>
/// 删除一个文件
/// </summary>
/// <param name="FilePathName"></param>
public void DeleteFile(string FilePathName)
{
try
{
FileInfo DeleFile = new FileInfo(System.Web.HttpContext.Current.Server.MapPath
(FilePathName).ToString());
DeleFile.Delete();
}
catch
{
}
}
public void CreateFile(string FilePathName)
{
try
{
//创建文件夹
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();