內容以下:C#追加、拷貝、刪除、移動文件、建立目錄、遞歸刪除文件夾及文件、指定文件夾下面的全部內容copy到目標文件夾下面、指定文件夾下面的全部內容Detele、讀取文本文件、獲取文件列表、讀取日誌文件、寫入日誌文件、建立HTML 文件、CreateDirectory方法的使用html C#追加文件數組 StreamWriter sw = File.AppendText(Server.MapPath(".")+"\\myText.txt");函數 sw.WriteLine("追逐理想");測試 sw.WriteLine("kzlll");字體 sw.WriteLine(".NET筆記");ui sw.Flush();spa sw.Close();操作系統 C#拷貝文件日誌 string OrignFile,NewFile;orm OrignFile = Server.MapPath(".")+"\\myText.txt"; NewFile = Server.MapPath(".")+"\\myTextCopy.txt"; File.Copy(OrignFile,NewFile,true); C#刪除文件 string delFile = Server.MapPath(".")+"\\myTextCopy.txt"; File.Delete(delFile); C#移動文件 string OrignFile,NewFile; OrignFile = Server.MapPath(".")+"\\myText.txt"; NewFile = Server.MapPath(".")+"\\myTextCopy.txt"; File.Move(OrignFile,NewFile); C#建立目錄 // 建立目錄c:\sixAge DirectoryInfo d=Directory.CreateDirectory("c:\\sixAge"); // d1指向c:\sixAge\sixAge1 DirectoryInfo d1=d.CreateSubdirectory("sixAge1"); // d2指向c:\sixAge\sixAge1\sixAge1_1 DirectoryInfo d2=d1.CreateSubdirectory("sixAge1_1"); // 將當前目錄設爲c:\sixAge Directory.SetCurrentDirectory("c:\\sixAge"); // 建立目錄c:\sixAge\sixAge2 Directory.CreateDirectory("sixAge2"); // 建立目錄c:\sixAge\sixAge2\sixAge2_1 Directory.CreateDirectory("sixAge2\\sixAge2_1"); 遞歸刪除文件夾及文件 <%@ Page Language=C#%> <%@ Import namespace="System.IO"%> <script_ runat=server> public void DeleteFolder(string dir) { if (Directory.Exists(dir)) //若是存在這個文件夾刪除之 { foreach(string d in Directory.GetFileSystemEntries(dir)) { if(File.Exists(d)) File.Delete(d); //直接刪除其中的文件 else DeleteFolder(d); //遞歸刪除子文件夾 } Directory.Delete(dir); //刪除已空文件夾 Response.Write(dir+" 文件夾刪除成功"); } else Response.Write(dir+" 該文件夾不存在"); //若是文件夾不存在則提示 } protected void Page_Load (Object sender ,EventArgs e) { string Dir="D:\\gbook\\11"; DeleteFolder(Dir); //調用函數刪除文件夾 } // ====================================================== // 實現一個靜態方法將指定文件夾下面的全部內容copy到目標文件夾下面 // 若是目標文件夾爲只讀屬性就會報錯。 // April 18April2005 In STU // ====================================================== public static void CopyDir(string srcPath,string aimPath) { try { // 檢查目標目錄是否以目錄分割字符結束若是不是則添加之 if(aimPath[aimPath.Length-1] != Path.DirectorySeparatorChar) aimPath += Path.DirectorySeparatorChar; // 判斷目標目錄是否存在若是不存在則新建之 if(!Directory.Exists(aimPath)) Directory.CreateDirectory(aimPath); // 獲得源目錄的文件列表,該裏面是包含文件以及目錄路徑的一個數組 // 若是你指向copy目標文件下面的文件而不包含目錄請使用下面的方法 // string[] fileList = Directory.GetFiles(srcPath); string[] fileList = Directory.GetFileSystemEntries(srcPath); // 遍歷全部的文件和目錄 foreach(string file in fileList) { // 先看成目錄處理若是存在這個目錄就遞歸Copy該目錄下面的文件 if(Directory.Exists(file)) CopyDir(file,aimPath+Path.GetFileName(file)); // 不然直接Copy文件 else File.Copy(file,aimPath+Path.GetFileName(file),true); } } catch (Exception e) { MessageBox.Show (e.ToString()); } } // ====================================================== // 實現一個靜態方法將指定文件夾下面的全部內容Detele // 測試的時候要當心操做,刪除以後沒法恢復。 // ====================================================== public static void DeleteDir(string aimPath) { try { // 檢查目標目錄是否以目錄分割字符結束若是不是則添加之 if(aimPath[aimPath.Length-1] != Path.DirectorySeparatorChar) aimPath += Path.DirectorySeparatorChar; // 獲得源目錄的文件列表,該裏面是包含文件以及目錄路徑的一個數組 // 若是你指向Delete目標文件下面的文件而不包含目錄請使用下面的方法 // string[] fileList = Directory.GetFiles(aimPath); string[] fileList = Directory.GetFileSystemEntries(aimPath); // 遍歷全部的文件和目錄 foreach(string file in fileList) { // 先看成目錄處理若是存在這個目錄就遞歸Delete該目錄下面的文件 if(Directory.Exists(file)) { DeleteDir(aimPath+Path.GetFileName(file)); } // 不然直接Delete文件 else { File.Delete (aimPath+Path.GetFileName(file)); } } //刪除文件夾 System.IO .Directory .Delete (aimPath,true); } catch (Exception e) { MessageBox.Show (e.ToString()); } } 須要引用命名空間: using System.IO; /// <summary>
/// </summary> /// <param ></param> /// <param ></param> //-------------------------------------------------- //--------------------------------------------------- public static void CopyFolder(string strFromPath,string strToPath) { //若是源文件夾不存在,則建立 if (!Directory.Exists(strFromPath)) { Directory.CreateDirectory(strFromPath); } //取得要拷貝的文件夾名 string strFolderName = strFromPath.Substring(strFromPath.LastIndexOf("\\") + 1,strFromPath.Length - strFromPath.LastIndexOf("\\") - 1); //若是目標文件夾中沒有源文件夾則在目標文件夾中建立源文件夾 if (!Directory.Exists(strToPath + "\\" + strFolderName)) { Directory.CreateDirectory(strToPath + "\\" + strFolderName); } //建立數組保存源文件夾下的文件名 string[] strFiles = Directory.GetFiles(strFromPath); //循環拷貝文件 for(int i = 0;i < strFiles.Length;i++) { //取得拷貝的文件名,只取文件名,地址截掉。 string strFileName = strFiles[i].Substring(strFiles[i].LastIndexOf("\\") + 1,strFiles[i].Length - strFiles[i].LastIndexOf("\\") - 1); //開始拷貝文件,true表示覆蓋同名文件 File.Copy(strFiles[i],strToPath + "\\" + strFolderName + "\\" + strFileName,true); }
//建立DirectoryInfo實例 DirectoryInfo dirInfo = new DirectoryInfo(strFromPath); //取得源文件夾下的全部子文件夾名稱 DirectoryInfo[] ZiPath = dirInfo.GetDirectories(); for (int j = 0;j < ZiPath.Length;j++) { //獲取全部子文件夾名 string strZiPath = strFromPath + "\\" + ZiPath[j].ToString(); //把獲得的子文件夾當成新的源文件夾,從頭開始新一輪的拷貝 CopyFolder(strZiPath,strToPath + "\\" + strFolderName); } } 一.讀取文本文件 /// <summary> /// 讀取文本文件 /// </summary> private void ReadFromTxtFile() { if(filePath.PostedFile.FileName != "") { txtFilePath =filePath.PostedFile.FileName; fileExtName = txtFilePath.Substring(txtFilePath.LastIndexOf(".")+1,3);
if(fileExtName !="txt" && fileExtName != "TXT") { Response.Write("請選擇文本文件"); } else { StreamReader fileStream = new StreamReader(txtFilePath,Encoding.Default); txtContent.Text = fileStream.ReadToEnd(); fileStream.Close(); } } } 二.獲取文件列表 /// <summary> /// 獲取文件列表 /// </summary> private void GetFileList() { string strCurDir,FileName,FileExt;
///文件大小 long FileSize;
///最後修改時間; DateTime FileModify;
///初始化 if(!IsPostBack) { ///初始化時,默認爲當前頁面所在的目錄 strCurDir = Server.MapPath("."); lblCurDir.Text = strCurDir; txtCurDir.Text = strCurDir; } else { strCurDir = txtCurDir.Text; txtCurDir.Text = strCurDir; lblCurDir.Text = strCurDir; } FileInfo fi; DirectoryInfo dir; TableCell td; TableRow tr; tr = new TableRow();
///動態添加單元格內容 td = new TableCell(); td.Controls.Add(new LiteralControl("文件名")); tr.Cells.Add(td); td = new TableCell(); td.Controls.Add(new LiteralControl("文件類型")); tr.Cells.Add(td); td = new TableCell(); td.Controls.Add(new LiteralControl("文件大小")); tr.Cells.Add(td); td = new TableCell(); td.Controls.Add(new LiteralControl("最後修改時間")); tr.Cells.Add(td);
tableDirInfo.Rows.Add(tr);
///針對當前目錄創建目錄引用對象 DirectoryInfo dirInfo = new DirectoryInfo(txtCurDir.Text);
///循環判斷當前目錄下的文件和目錄 foreach(FileSystemInfo fsi in dirInfo.GetFileSystemInfos()) { FileName = ""; FileExt = ""; FileSize = 0;
///若是是文件 if(fsi is FileInfo) { fi = (FileInfo)fsi;
///取得文件名 FileName = fi.Name;
///取得文件的擴展名 FileExt = fi.Extension;
///取得文件的大小 FileSize = fi.Length;
///取得文件的最後修改時間 FileModify = fi.LastWriteTime; }
///不然是目錄 else { dir = (DirectoryInfo)fsi;
///取得目錄名 FileName = dir.Name;
///取得目錄的最後修改時間 FileModify = dir.LastWriteTime;
///設置文件的擴展名爲"文件夾" FileExt = "文件夾"; }
///動態添加表格內容 tr = new TableRow(); td = new TableCell(); td.Controls.Add(new LiteralControl(FileName)); tr.Cells.Add(td); td = new TableCell(); td.Controls.Add(new LiteralControl(FileExt)); tr.Cells.Add(td); td = new TableCell(); td.Controls.Add(new LiteralControl(FileSize.ToString()+"字節")); tr.Cells.Add(td); td = new TableCell(); td.Controls.Add(new LiteralControl(FileModify.ToString("yyyy-mm-dd hh:mm:ss"))); tr.Cells.Add(td); tableDirInfo.Rows.Add(tr); } } 三.讀取日誌文件 /// <summary> /// 讀取日誌文件 /// </summary> private void ReadLogFile() { ///從指定的目錄以打開或者建立的形式讀取日誌文件 FileStream fs = new FileStream(Server.MapPath("upedFile")+"\\logfile.txt", FileMode.OpenOrCreate, FileAccess.Read); ///定義輸出字符串 StringBuilder output = new StringBuilder();
///初始化該字符串的長度爲0 output.Length = 0;
///爲上面建立的文件流建立讀取數據流 StreamReader read = new StreamReader(fs);
///設置當前流的起始位置爲文件流的起始點 read.BaseStream.Seek(0, SeekOrigin.Begin);
///讀取文件 while (read.Peek() > -1) { ///取文件的一行內容並換行 output.Append(read.ReadLine() + "\n"); }
///關閉釋放讀數據流 read.Close();
///返回讀到的日誌文件內容 return output.ToString(); } 四.寫入日誌文件 /// <summary> /// 寫入日誌文件 /// </summary> /// <param ></param> private void WriteLogFile(string input) { ///指定日誌文件的目錄 string fname = Server.MapPath("upedFile") + "\\logfile.txt"; ///定義文件信息對象 FileInfo finfo = new FileInfo(fname); ///判斷文件是否存在以及是否大於2K if ( finfo.Exists && finfo.Length > 2048 ) { ///刪除該文件 finfo.Delete(); } ///建立只寫文件流 using(FileStream fs = finfo.OpenWrite()) { ///根據上面建立的文件流建立寫數據流 StreamWriter w = new StreamWriter(fs);
///設置寫數據流的起始位置爲文件流的末尾 w.BaseStream.Seek(0, SeekOrigin.End);
w.Write("\nLog Entry : ");
///寫入當前系統時間並換行 w.Write("{0} {1} \r\n",DateTime.Now.ToLongTimeString(),DateTime.Now.ToLongDateString());
///寫入日誌內容並換行 w.Write(input + "\n");
///寫入------------------------------------「並換行 w.Write("------------------------------------\n");
///清空緩衝區內容,並把緩衝區內容寫入基礎流 w.Flush();
///關閉寫數據流 w.Close(); } } 五.C#建立HTML文件 /// <summary> /// 建立HTML文件 /// </summary> private void CreateHtmlFile() { ///定義和html標記數目一致的數組 string[] newContent = new string[5]; StringBuilder strhtml = new StringBuilder(); try { ///建立StreamReader對象 using (StreamReader sr = new StreamReader(Server.MapPath("createHTML") + "\\template.html")) { String oneline;
///讀取指定的HTML文件模板 while ((oneline = sr.ReadLine()) != null) { strhtml.Append(oneline); } sr.Close(); } } catch(Exception err) { ///輸出異常信息 Response.Write(err.ToString()); } ///爲標記數組賦值 newContent[0] = txtTitle.Text;//標題 newContent[1] = "BackColor='#cccfff'";//背景色 newContent[2] = "#ff0000";//字體顏色 newContent[3] = "100px";//字體大小 newContent[4] = txtContent.Text;//主要內容 ///根據上面新的內容生成html文件 try { ///指定要生成的HTML文件 string fname = Server.MapPath("createHTML") +"\\" + DateTime.Now.ToString("yyyymmddhhmmss") + ".html";
///替換html模版文件裏的標記爲新的內容 for(int i=0;i < 5;i++) { strhtml.Replace("$htmlkey["+i+"]",newContent[i]); } ///建立文件信息對象 FileInfo finfo = new FileInfo(fname);
///以打開或者寫入的形式建立文件流 using(FileStream fs = finfo.OpenWrite()) { ///根據上面建立的文件流建立寫數據流 StreamWriter sw = new StreamWriter(fs,System.Text.Encoding.GetEncoding("GB2312"));
///把新的內容寫到建立的HTML頁面中 sw.WriteLine(strhtml); sw.Flush(); sw.Close(); }
///設置超級連接的屬性 hyCreateFile.Text = DateTime.Now.ToString("yyyymmddhhmmss")+".html"; hyCreateFile.NavigateUrl = "createHTML/"+DateTime.Now.ToString("yyyymmddhhmmss")+".html"; } catch(Exception err) { Response.Write (err.ToString()); } } CreateDirectory方法的使用 using System; using System.IO;
class Test { public static void Main() { // Specify the directory you want to manipulate. string path = @"c:\MyDir";
try { // Determine whether the directory exists. if (Directory.Exists(path)) { Console.WriteLine("That path exists already."); return; }
// Try to create the directory. DirectoryInfo di = Directory.CreateDirectory(path); Console.WriteLine("The directory was created successfully at {0}.", Directory.GetCreationTime(path));
// Delete the directory. di.Delete(); Console.WriteLine("The directory was deleted successfully."); } catch (Exception e) { Console.WriteLine("The process failed: {0}", e.ToString()); } finally {} } } |
在.Net中,對文件(File)和文件夾(Folder)的操做可使用File類和Directory類,也可使用FileInfo類和DirectoryInfo類。文件夾(Folder)是隻在Windows操做系統中使用的名詞。在操做系統的理論中,人們更習慣於使用目錄(Directory)這個名詞。或許微軟爲了有朝一日將.Net移植到其餘的操做系統中(實際上也有不少人也在作着這個項目),因此仍是以Directory來命名操做文件夾的類。
File類和Directory類都是靜態類。使用它們的好處是不須要初始化對象。若是你對某一個文件或文件夾只進行一次操做,那你最好使用該靜態類的靜態方法,好比File.Move,File.Delete等等。若是你須要對一個文件或文件夾進行屢次操做,那最好仍是使用FileInfo和DirectoryInfo類。由於File類和Directory是靜態類,因此你每次對一個文件或文件夾進行操做以前,它們都須要對該文件或文件夾進行一些檢查,好比authentication。若是使用FileInfo類和DirectoryInfo類,只在初始化類的對象時進行相關的檢查工做,也就是說只須要作一次,因此若是你須要對某個文件或文件夾進行屢次操做,那最好使用FileInfo類和DirectoryInfo類。
下面的這段代碼演示瞭如何得到文件夾的信息,包括得到文件夾下的子文件夾,以及文件夾下的文件。這裏使用了DirectoryInfo 類來完成,固然你也可使用Directory靜態類。
void DisplayFolder()
{
string folderFullName = @"c:\temp";
DirectoryInfo theFolder = new DirectoryInfo(folderFullName);
if (!theFolder.Exists)
throw new DirectoryNotFoundException("Folder not found: " + folderFullName);
// list all subfolders in folder
Console.WriteLine("Subfolders:");
foreach (DirectoryInfo subFolder in theFolder.GetDirectories())
{
Console.WriteLine(subFolder.Name);
}
// list all files in folder
Console.WriteLine();
Console.WriteLine("Files:");
foreach (FileInfo file in theFolder.GetFiles())
{
Console.WriteLine(file.Name);
}
}
下面演示瞭如何使用FileInfo類來得到文件的相關信息,包括文件的建立日期,文件的大小等等。固然你一樣也可使用File靜態類來完成。
void DisplayFileInfo()
{
string folderFullName = @"c:\temp";
string fileName = "New Text Document.txt";
string fileFullName = Path.Combine(folderFullName, fileName);
FileInfo theFile = new FileInfo(fileFullName);
if (!theFile.Exists)
throw new FileNotFoundException("File not found: " + fileFullName);
Console.WriteLine(string.Format("Creation time: {0}", theFile.CreationTime.ToString()));
Console.WriteLine(string.Format("Size: {0} bytes", theFile.Length.ToString()));
}
下面的代碼分別使用了File類和FileInfo類來演示如何刪除文件
void DeleteFile1()
{
string fileToBeDeleted = @"c:\temp\New Text~ Document (3).txt";
if (File.Exists(fileToBeDeleted))
{
File.Delete(fileToBeDeleted);
}
}
void DeleteFile2()
{
string fileToBeDeleted = @"c:\temp\New Text~ Document (3).txt";
FileInfo file = new FileInfo(fileToBeDeleted);
if (file.Exists)
{
file.Delete();
}
}
下面的代碼分別使用了Directory類和DirectoryInfo類來演示如何刪除文件夾
void DeleteFolder1()
{
string folderToBeDeleted = @"c:\temp\test";
if (Directory.Exists(folderToBeDeleted))
{
// true is recursive delete:
Directory.Delete(folderToBeDeleted, true);
}
}
void DeleteFolder2()
{
string folderToBeDeleted = @"c:\temp\test";
DirectoryInfo folder = new DirectoryInfo(folderToBeDeleted);
if (folder.Exists)
{
folder.Delete(true);
}
}
下面的代碼分別使用了File類和FileInfo類來演示如何移動文件
void MoveFile1()
{
string fileToMove = @"c:\temp\New Text Document.txt";
string fileNewDestination = @"c:\temp\test.txt";
if (File.Exists(fileToMove) && !File.Exists(fileNewDestination))
{
File.Move(fileToMove, fileNewDestination);
}
}
void MoveFile2()
{
string fileToMove = @"c:\temp\New Text Document.txt";
string fileNewDestination = @"c:\temp\test.txt";
FileInfo file = new FileInfo(fileToMove);
if (file.Exists)
{
file.MoveTo(fileNewDestination);
}
}
下面的代碼分別使用了Directory類和DirectoryInfo類來演示如何移動文件夾
void MoveFolder1()
{
string folderToMove = @"c:\temp\test";
string folderNewDestination = @"c:\temp\test2";
if (Directory.Exists(folderToMove))
{
Directory.Move(folderToMove, folderNewDestination);
}
}
void MoveFolder2()
{
string folderToMove = @"c:\temp\test";
string folderNewDestination = @"c:\temp\test2";
DirectoryInfo folder = new DirectoryInfo(folderToMove);
if (folder.Exists)
{
folder.MoveTo(folderNewDestination);
}
}
下面的代碼分別使用了File類和FileInfo類來演示如何複製文件
按 Ctrl+C 複製代碼
按 Ctrl+C 複製代碼