首页 > 其他 > 详细

C# 复制文件夹内所有内容

时间:2014-04-15 15:25:06      阅读:537      评论:0      收藏:0      [点我收藏+]

使用递归的方式将文件夹内所有内容复制到新的路径

 

bubuko.com,布布扣
 1     public void CopyDirectory(string scrPath, string savePath)
 2     {
 3         if (Directory.Exists(scrPath))//检查路径(目录)是否存在
 4         {
 5             if (!Directory.Exists(savePath))
 6                 Directory.CreateDirectory(savePath);
 7             string[] sdd = DateTime.Now.GetDateTimeFormats();
 8             string subSavePath = savePath + "\\" + DateTime.Now.GetDateTimeFormats()[10];
 9             Directory.CreateDirectory(savePath + "\\" + DateTime.Now.GetDateTimeFormats()[10]);
10 
11             string[] aFiles = Directory.GetFiles(scrPath);
12             string[] aDirectory = Directory.GetDirectories(scrPath);
13             for (int i = 0; i < aFiles.Length; i++)
14             {
15                 FileInfo fi = new FileInfo(aFiles[i]);
16                 long fileSize = fi.Length;//文件大小
17 
18                 File.Copy(aFiles[i], subSavePath + "\\" + fi.Name);
19             }
20             if (aDirectory.Length != 0)
21             {
22                 for (int i = 0; i < aDirectory.Length; i++)
23                 {
24                     string aName = aDirectory[i].Substring(aDirectory[i].LastIndexOf(\\));
25                     CopyDirectory(aDirectory[i], subSavePath + aName);
26                 }
27             }
28         }
29     }
30 }
bubuko.com,布布扣

 

C# 复制文件夹内所有内容,布布扣,bubuko.com

C# 复制文件夹内所有内容

原文:http://www.cnblogs.com/weizhao/p/3663263.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!