博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C# 把一个文件夹下所有文件复制到另一个文件夹下 把一个文件夹下所有文件删除(转)...
阅读量:6674 次
发布时间:2019-06-25

本文共 1757 字,大约阅读时间需要 5 分钟。

 
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); }

 原文地址:

 

 
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);}

 原文地址:

转载于:https://www.cnblogs.com/lianghong/p/8793714.html

你可能感兴趣的文章
VMware VSAN5.5扩容篇
查看>>
Zend API:pval/zval 数据结构
查看>>
晒晒公司电脑配置
查看>>
Looper.myLooper().quit() 报 NullPointerException
查看>>
SSH1还是SSH2与Annotation还是Xml配置的问题
查看>>
简单构建工具SBT
查看>>
分享一个快速开发jQuery插件工具:jqueryboilerplate(转)
查看>>
Training的第二十天
查看>>
mysql设置主键自动增长
查看>>
linux系统的启动过程
查看>>
MySQL性能分析
查看>>
IIS错误日志 事件ID: 1093
查看>>
解决Unable to resolve target 'android-7'报错
查看>>
Connections could not be acquired from the unde...
查看>>
UIAlertView 总结
查看>>
【2016-03-17】移动互联网时代,看好你的隐私
查看>>
vi命令集
查看>>
oracle数据库克隆
查看>>
输出 pdf
查看>>
PHPCMS一个BUG
查看>>