如何在Windows中使用bat文件删除包含所有内容的文件夹?
我想要使用bat文件删除包含所有文件和子文件夹的文件夹。
我已经尝试了以下,但它不工作:
@DEL D:\PHP_Projects\testproject\Release\testfolder*.*
任何人都可以帮忙吗?
@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
-
del /s /qc:\where ever the file is\*
-
rmdir /s /qc:\where ever the file is\
-
mkdir c:\where ever the file is\
del / s / qc:\哪里文件是*
这会删除文件夹和子文件夹中的所有文件,但会留下空的子文件夹