如何删除一个文件夹和所有的内容使用蝙蝠文件在窗口?

我想删除一个文件夹与所有文件和子文件夹使用蝙蝠文件。

我试过以下方法,但没有效果:

@DEL D:\PHP_Projects\testproject\Release\testfolder*.*

有人能帮忙吗?

421201 次浏览
@RD /S /Q "D:\PHP_Projects\testproject\Release\testfolder"

解说 :

删除(删除)目录。

RMDIR [/S] [/Q] [drive:]path RD [/S] [/Q] [drive:]path


/S      Removes all directories and files in the specified directory
in addition to the directory itself.  Used to remove a directory
tree.


/Q      Quiet mode, do not ask if ok to remove a directory tree with /S
  1. del /s /q c:\where ever the file is\*
  2. rmdir /s /q c:\where ever the file is\
  3. mkdir c:\where ever the file is\