C#实现文件夹的复制和删除

作者:airforce094 时间:2023-02-18 00:54:22 

最近做MVC网站时刚好用到,用以提供一个完整的文件夹并压缩下载,正好做个笔记。

拷贝文件夹的所有内容到另一个文件夹内:


public static void CopyDir(string srcPath, string aimPath)
   {
     try
     {
       // 检查目标目录是否以目录分割字符结束如果不是则添加之
       if (aimPath[aimPath.Length - 1] != Path.DirectorySeparatorChar)
         aimPath += Path.DirectorySeparatorChar;
       // 判断目标目录是否存在如果不存在则新建之
       if (!Directory.Exists(aimPath))
         Directory.CreateDirectory(aimPath);
       // 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
       // 如果你指向copy目标文件下面的文件而不包含目录请使用下面的方法
       // string[] fileList = Directory.GetFiles(srcPath);
       string[] fileList = Directory.GetFileSystemEntries(srcPath);
       // 遍历所有的文件和目录
       foreach (string file in fileList)
       {
         // 先当作目录处理如果存在这个目录就递归Copy该目录下面的文件
         if (Directory.Exists(file))
           CopyDir(file, aimPath + Path.GetFileName(file));
         // 否则直接Copy文件
         else
           File.Copy(file, aimPath + Path.GetFileName(file), true);
       }
     }
     catch
     {
       Console.WriteLine("无法复制!");
     }
   }

删除文件夹:


Directory.Delete(path, true);

来源:http://www.cnblogs.com/lovecsharp094/p/5509295.html

标签:C#,文件夹,复制
0
投稿

猜你喜欢

  • maven项目install时忽略执行test方法的总结

    2023-11-07 09:58:16
  • struts2中使用注解配置Action方法详解

    2023-08-30 00:01:25
  • 基于使用BeginInvoke,EndInvoke异步调用委托的实现代码

    2023-04-29 09:46:49
  • Java数据结构之图的基础概念和数据模型详解

    2022-03-25 11:27:04
  • C#基于正则表达式删除字符串中数字或非数字的方法

    2021-07-12 17:27:44
  • Spring Boot启动banner定制的步骤详解

    2023-03-04 19:30:20
  • JavaWeb实现文件上传与下载的方法

    2023-12-23 04:42:56
  • Android采取ContentObserver方式自动获取验证码

    2023-07-31 16:20:48
  • 如何为Spring Cloud Gateway加上全局过滤器

    2022-06-19 09:14:47
  • Java深入浅出掌握SpringBoot之MVC自动配置原理篇

    2022-04-16 02:14:34
  • 在IntelliJ IDEA中使用gulp的方法步骤(图文)

    2022-10-12 06:29:08
  • Java Stream流零基础教程

    2023-08-15 19:33:20
  • C#深拷贝方法探究及性能比较(多种深拷贝)

    2022-08-30 18:17:02
  • SpringBoot下的值注入(推荐)

    2023-04-01 04:45:01
  • 解决微服务中关于用户token处理到的坑

    2022-05-21 08:31:03
  • Java使用条件语句和循环结构确定控制流(实例)

    2022-07-04 04:52:35
  • Springboot整合FreeMarker的实现示例

    2023-04-09 00:57:57
  • java基础(System.err和System.out)详解

    2022-10-23 23:27:37
  • maven中profile的使用

    2022-03-31 10:43:53
  • 浅谈Java锁的膨胀过程以及一致性哈希对锁膨胀的影响

    2023-06-03 15:03:38
  • asp之家 软件编程 m.aspxhome.com