我想使用bat文件刪除包含所有文件和子文件夾的文件夾。如何使用Windows中的bat文件刪除包含所有內容的文件夾?
我曾嘗試以下,但它不工作:
@DEL D:\PHP_Projects\testproject\Release\testfolder*.*
有人能幫忙嗎?
我想使用bat文件刪除包含所有文件和子文件夾的文件夾。如何使用Windows中的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 /q c:\where ever the file is\*
mkdir c:\where ever the file is\
DEL/S/Q C:\究竟在哪兒的文件是*
這將刪除的文件夾和子文件夾中的所有文件,但留下空的子文件夾
問題是:'所有的文件和subfolders' – Stephan
@Stephan你是對的。我的消息是解決方案#1不會刪除子文件夾。至少對於我來說 –
在「命令」提示符下鍵入「幫助RD」更多的澄清 – Pradeep