本文收集了目前最为常用的C#经典操作文件的方法具体内容如下C#追加拷贝删除移动文件创建目录递归删除文件夹及文件指定文件夹下 面的所有内容copy到目标文件夹下面指定文件夹下面的所有内容Detele读取文本文件获取文件列表读取日志文件写入日志文件创建HTML 文件CreateDirectory方法的使用
C#追加文件
StreamWriter sw = FileAppendText(ServerMapPath()+\\myTexttxt)
swWriteLine(追逐理想)
swWriteLine(kzlll)
swWriteLine(NET笔记)
swFlush()
swClose()
C#拷贝文件
string OrignFileNewFile;
OrignFile = ServerMapPath()+\\myTexttxt;
NewFile = ServerMapPath()+\\myTextCopytxt;
FileCopy(OrignFileNewFiletrue)
C#删除文件
string delFile = ServerMapPath()+\\myTextCopytxt;
FileDelete(delFile)
C#移动文件
string OrignFileNewFile;
OrignFile = ServerMapPath()+\\myTexttxt;
NewFile = ServerMapPath()+\\myTextCopytxt;
FileMove(OrignFileNewFile)
C#创建目录
// 创建目录c:\sixAge
DirectoryInfo d=DirectoryCreateDirectory(c:\\sixAge)
// d指向c:\sixAge\sixAge
DirectoryInfo d=dCreateSubdirectory(sixAge)
// d指向c:\sixAge\sixAge\sixAge_
DirectoryInfo d=dCreateSubdirectory(sixAge_)
// 将当前目录设为c:\sixAge
DirectorySetCurrentDirectory(c:\\sixAge)
// 创建目录c:\sixAge\sixAge
DirectoryCreateDirectory(sixAge)
// 创建目录c:\sixAge\sixAge\sixAge_
DirectoryCreateDirectory(sixAge\\sixAge_)
递归删除文件夹及文件
<%@ Page Language=C#%>
<%@ Import namespace=SystemIO%>
<script_ runat=server>
public void DeleteFolder(string dir)
{
if (DirectoryExists(dir)) //如果存在这个文件夹删除之
{
foreach(string d in DirectoryGetFileSystemEntries(dir))
{
if(FileExists(d))
FileDelete(d) //直接删除其中的文件
else
DeleteFolder(d) //递归删除子文件夹
}
DirectoryDelete(dir) //删除已空文件夹
ResponseWrite(dir+ 文件夹删除成功)
}
else
ResponseWrite(dir+ 该文件夹不存在) //如果文件夹不存在则提示
}
protected void Page_Load (Object sender EventArgs e)
{
string Dir=D:\\gbook\\;
DeleteFolder(Dir) //调用函数删除文件夹
}
// ======================================================
// 实现一个静态方法将指定文件夹下面的所有内容copy到目标文件夹下面
// 如果目标文件夹为只读属性就会报错
// April April In STU
// ======================================================
public static void CopyDir(string srcPathstring aimPath)
{
try
{
// 检查目标目录是否以目录分割字符结束如果不是则添加之
if(aimPath[aimPathLength] != PathDirectorySeparatorChar)
aimPath += PathDirectorySeparatorChar;
// 判断目标目录是否存在如果不存在则新建之
if(!DirectoryExists(aimPath)) DirectoryCreateDirectory(aimPath)
// 得到源目录的文件列表该里面是包含文件以及目录路径的一个数组
// 如果你指向copy目标文件下面的文件而不包含目录请使用下面的方法
// string[] fileList = DirectoryGetFiles(srcPath)
string[] fileList = DirectoryGetFileSystemEntries(srcPath)
// 遍历所有的文件和目录
foreach(string file in fileList)
{
// 先当作目录处理如果存在这个目录就递归Copy该目录下面的文件
if(DirectoryExists(file))
CopyDir(fileaimPath+PathGetFileName(file))
// 否则直接Copy文件
else
FileCopy(fileaimPath+PathGetFileName(file)true)
}
}
catch (Exception e)
{
MessageBoxShow (eToString())
}
}
// ======================================================
// 实现一个静态方法将指定文件夹下面的所有内容Detele
// 测试的时候要小心操作删除之后无法恢复
// ======================================================
public static void DeleteDir(string aimPath)
{
try
{
// 检查目标目录是否以目录分割字符结束如果不是则添加之
if(aimPath[aimPathLength] != PathDirectorySeparatorChar)
aimPath += PathDirectorySeparatorChar;
// 得到源目录的文件列表该里面是包含文件以及目录路径的一个数组
// 如果你指向Delete目标文件下面的文件而不包含目录请使用下面的方法
// string[] fileList = DirectoryGetFiles(aimPath)
string[] fileList = DirectoryGetFileSystemEntries(aimPath)
// 遍历所有的文件和目录
foreach(string file in fileList)
{
// 先当作目录处理如果存在这个目录就递归Delete该目录下面的文件
if(DirectoryExists(file))
{
DeleteDir(aimPath+PathGetFileName(file))
}
// 否则直接Delete文件
else
{
FileDelete (aimPath+PathGetFileName(file))
}
}
//删除文件夹
SystemIO Directory Delete (aimPathtrue)
}
catch (Exception e)
{
MessageBoxShow (eToString())
}
}
需要引用命名空间
using SystemIO;
//// <summary>
/// </summary>
/// <param ></param>
/// <param ></param>
//
//
public static void CopyFolder(string strFromPathstring strToPath)
{
//如果源文件夹不存在则创建
if (!DirectoryExists(strFromPath))
{
DirectoryCreateDirectory(strFromPath)
}
//取得要拷贝的文件夹名
string strFolderName = strFromPathSubstring(strFromPathLastIndexOf(\\) + strFromPathLength strFromPathLastIndexOf(\\) )
//如果目标文件夹中没有源文件夹则在目标文件夹中创建源文件夹
if (!DirectoryExists(strToPath + \\ + strFolderName))
{
DirectoryCreateDirectory(strToPath + \\ + strFolderName)
}
//创建数组保存源文件夹下的文件名
string[] strFiles = DirectoryGetFiles(strFromPath)
//循环拷贝文件
for(int i = ;i < strFilesLength;i++)
{
//取得拷贝的文件名只取文件名地址截掉
string strFileName = strFiles[i]Substring(strFiles[i]LastIndexOf(\\) + strFiles[i]Length strFiles[i]LastIndexOf(\\) )
//开始拷贝文件true表示覆盖同名文件
FileCopy(strFiles[i]strToPath + \\ + strFolderName + \\ + strFileNametrue)
}
//创建DirectoryInfo实例
DirectoryInfo dirInfo = new DirectoryInfo(strFromPath)
//取得源文件夹下的所有子文件夹名称
DirectoryInfo[] ZiPath = dirInfoGetDirectories()
for (int j = ;j < ZiPathLength;j++)
{
//获取所有子文件夹名
string strZiPath = strFromPath + \\ + ZiPath[j]ToString()
//把得到的子文件夹当成新的源文件夹从头开始新一轮的拷贝
CopyFolder(strZiPathstrToPath + \\ + strFolderName)
}
}
一读取文本文件
/**//// <summary>
/// 读取文本文件
/// </summary>
private void ReadFromTxtFile()
{
if(filePathPostedFileFileName != )
{
txtFilePath =filePathPostedFileFileName;
fileExtName = txtFilePathSubstring(txtFilePathLastIndexOf()+)
if(fileExtName !=txt && fileExtName != TXT)
{
ResponseWrite(请选择文本文件)
}
else
{
StreamReader fileStream = new StreamReader(txtFilePathEncodingDefault)
txtContentText = fileStreamReadToEnd()
fileStreamClose()
}
}
}
二获取文件列表
/**//// <summary>
/// 获取文件列表
/// </summary>
private void GetFileList()
{
string strCurDirFileNameFileExt;
/**////文件大小
long FileSize;
/**////最后修改时间
DateTime FileModify;
/**////初始化
if(!IsPostBack)
{
/**////初始化时默认为当前页面所在的目录
strCurDir = ServerMapPath()
lblCurDirText = strCurDir;
txtCurDirText = strCurDir;
}
else
{
strCurDir = txtCurDirText;
txtCurDirText = strCurDir;
lblCurDirText = strCurDir;
}
FileInfo fi;
DirectoryInfo dir;
TableCell td;
TableRow tr;
tr = new TableRow()
/**////动态添加单元格内容
td = new TableCell()
tdControlsAdd(new LiteralControl(文件名))
trCellsAdd(td)
td = new TableCell()
tdControlsAdd(new LiteralControl(文件类型))
trCellsAdd(td)
td = new TableCell()
tdControlsAdd(new LiteralControl(文件大小))
trCellsAdd(td)
td = new TableCell()
tdControlsAdd(new LiteralControl(最后修改时间))
trCellsAdd(td)
tableDirInfoRowsAdd(tr)
/**////针对当前目录建立目录引用对象
DirectoryInfo dirInfo = new DirectoryInfo(txtCurDirText)
/**////循环判断当前目录下的文件和目录
foreach(FileSystemInfo fsi in dirInfoGetFileSystemInfos())
{
FileName = ;
FileExt = ;
FileSize = ;
/**////如果是文件
if(fsi is FileInfo)
{
fi = (FileInfo)fsi;
/**////取得文件名
FileName = fiName;
/**////取得文件的扩展名
FileExt = fiExtension;
/**////取得文件的大小
FileSize = fiLength;
/**////取得文件的最后修改时间
FileModify = fiLastWriteTime;
}
/**////否则是目录
else
{
dir = (DirectoryInfo)fsi;
/**////取得目录名
FileName = dirName;
/**////取得目录的最后修改时间
FileModify = dirLastWriteTime;
/**////设置文件的扩展名为文件夹
FileExt = 文件夹;
}
/**////动态添加表格内容
tr = new TableRow()
td = new TableCell()
tdControlsAdd(new LiteralControl(FileName))
trCellsAdd(td)
td = new TableCell()
tdControlsAdd(new LiteralControl(FileExt))
trCellsAdd(td)
td = new TableCell()
tdControlsAdd(new LiteralControl(FileSizeToString()+字节))
trCellsAdd(td)
td = new TableCell()
tdControlsAdd(new LiteralControl(FileModifyToString(yyyymmdd hh:mm:ss)))
trCellsAdd(td)
tableDirInfoRowsAdd(tr)
}
}
三读取日志文件
/**//// <summary>
/// 读取日志文件
/// </summary>
private void ReadLogFile()
{
/**////从指定的目录以打开或者创建的形式读取日志文件
FileStream fs = new FileStream(ServerMapPath(upedFile)+\\logfiletxt FileModeOpenOrCreate FileAccessRead)
/**////定义输出字符串
StringBuilder output = new StringBuilder()
/**////初始化该字符串的长度为
outputLength = ;
/**////为上面创建的文件流创建读取数据流
StreamReader read = new StreamReader(fs)
/**////设置当前流的起始位置为文件流的起始点
readBaseStreamSeek( SeekOriginBegin)
/**////读取文件
while (readPeek() > )
{
/**////取文件的一行内容并换行
outputAppend(readReadLine() + \n)
}
/**////关闭释放读数据流
readClose()
/**////返回读到的日志文件内容
return outputToString()
}
四写入日志文件
/**//// <summary>
/// 写入日志文件
/// </summary>
/// <param ></param>
private void WriteLogFile(string input)
{
/**////指定日志文件的目录
string fname = ServerMapPath(upedFile) + \\logfiletxt;
/**////定义文件信息对象
FileInfo finfo = new FileInfo(fname)
/**////判断文件是否存在以及是否大于K
if ( finfoExists && finfoLength > )
{
/**////删除该文件
finfoDelete()
}
/**////创建只写文件流
using(FileStream fs = finfoOpenWrite())
{
/**////根据上面创建的文件流创建写数据流
StreamWriter w = new StreamWriter(fs)
/**////设置写数据流的起始位置为文件流的末尾
wBaseStreamSeek( SeekOriginEnd)
wWrite(\nLog Entry : )
/**////写入当前系统时间并换行
wWrite({} {} \r\nDateTimeNowToLongTimeString()DateTimeNowToLongDateString())
/**////写入日志内容并换行
wWrite(input + \n)
/**////写入并换行
wWrite(\n)
/**////清空缓沖区内容并把缓沖区内容写入基础流
wFlush()
/**////关闭写数据流
wClose()
}
}
五C#创建HTML文件
/**//// <summary>
/// 创建HTML文件
/// </summary>
private void CreateHtmlFile()
{
/**////定义和html标记数目一致的数组
string[] newContent = new string[];
StringBuilder strhtml = new StringBuilder()
try
{
/**////创建StreamReader对象
using (StreamReader sr = new StreamReader(ServerMapPath(createHTML) + \\l))
{
String oneline;
/**////读取指定的HTML文件模板
while ((oneline = srReadLine()) != null)
{
strhtmlAppend(oneline)
}
srClose()
}
}
catch(Exception err)
{
/**////输出异常信息
ResponseWrite(errToString())
}
/**////为标记数组赋值
newContent[] = txtTitleText;//标题
newContent[] = BackColor=#cccfff;//背景色
newContent[] = #ff;//字体颜色
newContent[] = px;//字体大小
newContent[] = txtContentText;//主要内容
/**////根据上面新的内容生成html文件
try
{
/**////指定要生成的HTML文件
string fname = ServerMapPath(createHTML) +\\ + DateTimeNowToString(yyyymmddhhmmss) + l;
/**////替换html模版文件里的标记为新的内容
for(int i=;i < ;i++)
{
strhtmlReplace($htmlkey[+i+]newContent[i])
}
/**////创建文件信息对象
FileInfo finfo = new FileInfo(fname)
/**////以打开或者写入的形式创建文件流
using(FileStream fs = finfoOpenWrite())
{
/**////根据上面创建的文件流创建写数据流
StreamWriter sw = new StreamWriter(fsSystemTextEncodingGetEncoding(GB))
/**////把新的内容写到创建的HTML页面中
swWriteLine(strhtml)
swFlush()
swClose()
}
/**////设置超级链接的属性
hyCreateFileText = DateTimeNowToString(yyyymmddhhmmss)+l;
hyCreateFileNavigateUrl = createHTML/+DateTimeNowToString(yyyymmddhhmmss)+l;
}
catch(Exception err)
{
ResponseWrite (errToString())
}
}
CreateDirectory方法的使用
using System;
using SystemIO;
class Test
{
public static void Main()
{
// Specify the directory you want to manipulate
string path = @c:\MyDir;
try
{
// Determine whether the directory exists
if (DirectoryExists(path))
{
ConsoleWriteLine(That path exists already)
return;
}
// Try to create the directory
DirectoryInfo di = DirectoryCreateDirectory(path)
ConsoleWriteLine(The directory was created successfully at {} DirectoryGetCreationTime(path))
// Delete the directory
diDelete()
ConsoleWriteLine(The directory was deleted successfully)
}
catch (Exception e)
{
ConsoleWriteLine(The process failed: {} eToString())
}
finally {}
}
}