Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想删除整个文件夹或目录以及其中包含的文件和文件夹。如何在 C# 中实现?
尝试使用
Directory.Delete(dir_path, true);
检查手册
由于它是 c# 标签,因此我假设该目录位于服务器端。请参阅此链接
如何删除目录中的所有文件和文件夹?
var dInfo = new DirectoryInfo("your_path_to_dir"); dInfo.Delete(true);
Delete 方法中的 true 参数是 Recursive = true。这告诉方法删除当前文件夹及其中的所有内容。文件和文件夹。