C#基礎-文件夾複製與刪除

代碼來源:http://blog.163.com/u_tommy_520/blog/static/20406104420147493933662/數組

最近作MVC網站時恰好用到,用以提供一個完整的文件夾並壓縮下載,正好作個筆記。網站

 

拷貝文件夾的全部內容到另外一個文件夾內spa

 1  public static void CopyDir(string srcPath, string aimPath)
 2         {
 3             try
 4             {
 5                 // 檢查目標目錄是否以目錄分割字符結束若是不是則添加之
 6                 if (aimPath[aimPath.Length - 1] != Path.DirectorySeparatorChar)
 7                     aimPath += Path.DirectorySeparatorChar;
 8                 // 判斷目標目錄是否存在若是不存在則新建之
 9                 if (!Directory.Exists(aimPath))
10                     Directory.CreateDirectory(aimPath);
11                 // 獲得源目錄的文件列表,該裏面是包含文件以及目錄路徑的一個數組
12                 // 若是你指向copy目標文件下面的文件而不包含目錄請使用下面的方法
13                 // string[] fileList = Directory.GetFiles(srcPath);
14                 string[] fileList = Directory.GetFileSystemEntries(srcPath);
15                 // 遍歷全部的文件和目錄
16                 foreach (string file in fileList)
17                 {
18                     // 先看成目錄處理若是存在這個目錄就遞歸Copy該目錄下面的文件
19                     if (Directory.Exists(file))
20                         CopyDir(file, aimPath + Path.GetFileName(file));
21                     // 不然直接Copy文件
22                     else
23                         File.Copy(file, aimPath + Path.GetFileName(file), true);
24                 }
25             }
26             catch
27             {
28                 Console.WriteLine("沒法複製!");
29             }
30         }

刪除文件夾:code

Directory.Delete(path, true);
相關文章
相關標籤/搜索