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

C# 把一个文件夹下所有文件复制到另一个文件夹下 把一个文件夹下所有文件删除(转)

时间:2018-04-11 10:43:17      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:foreach   title   cat   director   exce   dir   创建   create   static   

 
技术分享图片
public static void CopyDirectory(string srcPath, string destPath)
{
  try
    {
    DirectoryInfo dir = new DirectoryInfo(srcPath);
    FileSystemInfo[] fileinfo = dir.GetFileSystemInfos(); //获取目录下(不包含子目录)的文件和子目录     foreach (FileSystemInfo i in fileinfo) { if (i is DirectoryInfo) //判断是否文件夹 { if (!Directory.Exists(destPath+"\\"+i.Name)) { Directory.CreateDirectory(destPath + "\\" + i.Name); //目标目录下不存在此文件夹即创建子文件夹 } CopyDir(i.FullName, destPath + "\\" + i.Name); //递归调用复制子文件夹 } else { File.Copy(i.FullName, destPath + "\\" + i.Name,true); //不是文件夹即复制文件,true表示可以覆盖同名文件 } } } catch (Exception e) { throw; }
}
技术分享图片

 

调用CopyDirectory方法前可以先判断原路径与目标路径是否存在


if(Directory.Exists(srcPath)&&Directory.Exists(destPath)) { CopyDirectory(srcPath,destPath);
}

 原文地址:http://www.cnblogs.com/iamlucky/p/5996222.html

 

C# 把一个文件夹下所有文件删除

 
技术分享图片
public static void DelectDir(string srcPath)
{ try { DirectoryInfo dir = new DirectoryInfo(srcPath); FileSystemInfo[] fileinfo = dir.GetFileSystemInfos(); //返回目录中所有文件和子目录 foreach (FileSystemInfo i in fileinfo) { if (i is DirectoryInfo) //判断是否文件夹 { DirectoryInfo subdir = new DirectoryInfo(i.FullName); subdir.Delete(true); //删除子目录和文件 } else { File.Delete(i.FullName); //删除指定文件 } } } catch (Exception e) { throw; }
}
技术分享图片

 

调用DelectDir方法前可以先判断文件夹是否存在

if(Directory.Exists(srcPath))
{
    DelectDir(srcPath);
}

 原文地址:http://www.cnblogs.com/iamlucky/p/5997865.html

C# 把一个文件夹下所有文件复制到另一个文件夹下 把一个文件夹下所有文件删除(转)

标签:foreach   title   cat   director   exce   dir   创建   create   static   

原文地址:https://www.cnblogs.com/lianghong/p/8793714.html

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