C#编程-114:文件夹操作之删除
【摘要】
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace DeleteDirectoryTest { &...
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Text;
- namespace DeleteDirectoryTest
- {
- class Program
- {
- static void Main(string[] args)
- {
- string path = @"C:\Users\pengshiyu\Desktop\test";
- if (Directory.Exists(path))
- {
- try
- {
- Console.WriteLine("请输入删除方式:\n1、当文件夹为空时删除,\n2、删除所有子目录");
- string choice = Console.ReadLine();
- if (choice == "1")
- {
- Directory.Delete(path, false);//如果文件夹包涵子目录,则抛出异常
- Console.WriteLine("删除空文件成功");
- }
- else if (choice == "2")
- {
- Directory.Delete(path,true);
- Console.WriteLine("删除所有文件成功");
- }
- else
- {
- Console.WriteLine("用户输入有误!");
- }
- }
- catch (Exception ex)
- {
- Console.WriteLine(ex.Message);
- }
- }
- else
- {
- Console.WriteLine("文件不存在!" + path);
- }
- Console.ReadKey();
- }
- }
- }
recursive 英[rɪˈkɜ:sɪv] 美[rɪˈkɜ:rsɪv]
adj. 回归的,递归的;
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/81049250
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)