C#中常用的經典檔案操作方法

來源:互聯網
上載者:User

標籤:style   color   io   os   使用   ar   for   檔案   sp   

C#追加檔案 StreamWriter sw = File.AppendText(Server.MapPath(".")+"\\myText.txt"); sw.WriteLine("追逐理想"); sw.WriteLine("kzlll"); sw.WriteLine(".NET筆記"); sw.Flush(); sw.Close();C#拷貝檔案 string OrignFile,NewFile; 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");遞迴刪除檔案夾及檔案 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// 測試的時候要小心操作,刪除之後無法恢複。// April 18April2005 In STU// ======================================================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;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);   }}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   {}             }   }

C#中常用的經典檔案操作方法

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.