5

是否可以删除文件夹中的所有子文件夹(包含内容)和文件?

例如:

  • 备份
    • 十一月
      • pic1.jpg
      • pic2.jpg
    • 十二月
    • 一月
      • pic3.jpg
    • 示例1.txt
    • 示例2.txt
    • 示例3.txt

有一个根文件夹(备份)。此根文件夹包含 3 个子文件夹(包含内容)和 3 个文本文件。如何在不删除根文件夹(备份)本身的情况下删除备份文件夹的全部内容(3 个子文件夹和 3 个文件)?

4

1 回答 1

13

Directory类有一个Delete方法,该方法接受一个参数,该参数强制对传递的文件夹进行递归删除操作

' Loop over the subdirectories and remove them with their contents
For Each d in Directory.GetDirectories("C:\Backup")
    Directory.Delete(d, true)
Next

' Finish removing also the files in the root folder
For Each f In Directory.GetFiles("c:\backup") 
     File.Delete(f) 
Next 

FROM MSDN 目录。删除

删除指定目录以及目录中的任何子目录和文件(如果有指示)。

于 2014-12-03T13:31:22.247 回答