using System; namespace SEC (“../../../Images/”+FolderPathName).ToString(); /**//// <summary> (FolderPathName).ToString(); /**//// <summary> (FilePathName).ToString()); 夹 (FilePathName).ToString()); //创建文件 (FolderPathName).ToString()); (FilePathName).ToString(),FileMode.Open,FileAccess.ReadWrite); /**//// <summary> (FilePathName).ToString(),FileMode.Open,FileAccess.Read); (FilePathName));
using System.IO;
using System.Web;
{
/**//// <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
if(!Directory.Exists(CreatePath))
{
Directory.CreateDirectory(CreatePath);
}
}
catch
{
throw;
}
}
}
/// 删除一个文件夹下面的字文件夹和文件
/// </summary>
/// <param name=”FolderPathName”></param>
public void DeleteChildFolder(string FolderPathName)
{
if(FolderPathName.Trim().Length>0)
{
try
{
string CreatePath = System.Web.HttpContext.Current.Server.MapPath
if(Directory.Exists(CreatePath))
{
Directory.Delete(CreatePath,true);
}
}
catch
{
throw;
}
}
}
/// 删除一个文件
/// </summary>
/// <param name=”FilePathName”></param>
public void DeleteFile(string FilePathName)
{
try
{
FileInfo DeleFile = new FileInfo(System.Web.HttpContext.Current.Server.MapPath
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
if(!CreateFile.Exists)
{
FileStream FS=CreateFile.Create();
FS.Close();
}
}
catch
{
}
}
/**//// <summary>
/// 删除整个文件夹及其字文件夹和文件
/// </summary>
/// <param name=”FolderPathName”></param>
public void DeleParentFolder(string FolderPathName)
{
try
{
DirectoryInfo DelFolder = new DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath
if(DelFolder.Exists)
{
DelFolder.Delete();
}
}
catch
{
}
}
/**//// <summary>
/// 在文件里追加内容
/// </summary>
/// <param name=”FilePathName”></param>
public void ReWriteReadinnerText(string FilePathName,string WriteWord)
{
try
{
//建立文件夹和文件
//CreateFolder(FilePathName);
CreateFile(FilePathName);
//得到原来文件的内容
FileStream FileRead=new FileStream(System.Web.HttpContext.Current.Server.MapPath
StreamReader FileReadWord=new StreamReader(FileRead,System.Text.Encoding.Default);
string OldString = FileReadWord.ReadToEnd().ToString();
OldString = OldString + WriteWord;
//把新的内容重新写入
StreamWriter FileWrite=new StreamWriter(FileRead,System.Text.Encoding.Default);
FileWrite.Write(WriteWord);
//关闭
FileWrite.Close();
FileReadWord.Close();
FileRead.Close();
}
catch
{
// throw;
}
}
/// 在文件里追加内容
/// </summary>
/// <param name=”FilePathName”></param>
public string ReaderFileData(string FilePathName)
{
try
{
FileStream FileRead=new FileStream(System.Web.HttpContext.Current.Server.MapPath
StreamReader FileReadWord=new StreamReader(FileRead,System.Text.Encoding.Default);
string TxtString = FileReadWord.ReadToEnd().ToString();
//关闭
FileReadWord.Close();
FileRead.Close();
return TxtString;
}
catch
{
throw;
}
}
/**//// <summary>
/// 读取文件夹的文件
/// </summary>
/// <param name=”FilePathName”></param>
/// <returns></returns>
public DirectoryInfo checkValidSessionPath(string FilePathName)
{
try
{
DirectoryInfo MainDir = new DirectoryInfo(System.Web.HttpContext.Current.Server.MapPath
return MainDir;
}
catch
{
throw;
}
}
}
}
asp.net对文件夹和文件的操作类_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » asp.net对文件夹和文件的操作类_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧