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

本文共 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

你可能感兴趣的文章
C#综合揭秘——Entity Framework 并发处理详解
查看>>
RecycleView的notifyItemRemoved使用注意
查看>>
mui 微信支付 与springMVC服务器交互
查看>>
传参防SQL注入函数
查看>>
Java Web整合开发读书笔记
查看>>
linux 安装安装rz/sz 和 ssh
查看>>
课堂练习(续)
查看>>
AndroidManifest.xml
查看>>
APP开发定制
查看>>
CentOS6.8 编译安装LNMP
查看>>
Django Form组件
查看>>
读《每天懂一点成功概率学》
查看>>
Java基础知识回顾之六 ----- IO流
查看>>
C++中Reference与指针(Pointer)的使用对比
查看>>
Codeforces 846 B Math Show DFS + 贪心
查看>>
C++中关于流的概念
查看>>
网站基于vs,复选框,单选款
查看>>
ucontext实现的用户级多线程框架3(实现echo服务器)
查看>>
前向引用
查看>>
js数组练习
查看>>