码迷,mamicode.com
首页 > Windows程序 > 详细

c#拷贝整个文件夹到指定文件夹下(非递归)

时间:2018-10-28 23:02:54      阅读:493      评论:0      收藏:0      [点我收藏+]

标签:option   stat   stp   arch   search   rect   creat   static   copy   

    public static void CopyEntireDir(string sourcePath, string destPath) {
       //Now Create all of the directories
        foreach (string dirPath in Directory.GetDirectories(sourcePath, "*",
           SearchOption.AllDirectories))
            Directory.CreateDirectory(dirPath.Replace(sourcePath, destPath));

       //Copy all the files & Replaces any files with the same name
        foreach (string newPath in Directory.GetFiles(sourcePath, "*.*",
           SearchOption.AllDirectories))
            File.Copy(newPath, newPath.Replace(sourcePath, destPath), true);
    }

 

c#拷贝整个文件夹到指定文件夹下(非递归)

标签:option   stat   stp   arch   search   rect   creat   static   copy   

原文地址:https://www.cnblogs.com/lee2011/p/9867750.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!