A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 陈君 金牌黑马   /  2014-8-16 17:48  /  907 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

转自:http://www.jb51.net/article/53611.htm
这篇文章主要介绍了C#下实现创建和删除目录的方法,功能非常实用,需要的朋友可以参考下
本文所述代码是从一个C#程序中摘录出来的,主要实现C#创建目录、删除文件夹及文件的功能,包括所引用的名称空间等,特别是对C#不熟悉的初学者,会有一定的参考借鉴价值。下面把创建和删除文件夹的完整代码帖上来供大家参考借鉴。
代码入下所示:
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.IO;
  6. using System.Collections;
  7. namespace delete
  8. {
  9. class Program
  10. {
  11. static void Main(string[] args)
  12. {
  13. deleteFiles(@"D:\Test\我的文件夹");
  14. }
  15. public static void deleteFiles(string strDir)
  16. {
  17. if (Directory.Exists(strDir))
  18. {
  19. Directory.Delete(strDir, true);
  20. Directory.CreateDirectory(strDir);
  21. Console.WriteLine("文件删除成功!");
  22. Console.ReadLine();
  23. }
  24. else
  25. {
  26. Directory.CreateDirectory(strDir);
  27. Console.WriteLine("文件夹创建成功!");
  28. Console.ReadLine();
  29. }
  30. }
  31. }
  32. }
复制代码

相信本文所述实例会对大家有一定的帮助。

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马