2011-09-07 43 views

回答

162
@RD /S /Q "D:\PHP_Projects\testproject\Release\testfolder" 

Explanation

去除(刪除)的目錄。

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 
+3

在「命令」提示符下鍵入「幫助RD」更多的澄清 – Pradeep

13
  1. del /s /q c:\where ever the file is\*
  2. ​​3210
  3. mkdir c:\where ever the file is\
-2

DEL/S/Q C:\究竟在哪兒的文件是*

這將刪除的文件夾和子文件夾中的所有文件,但留下空的子文件夾

+1

問題是:'所有的文件和subfolders' – Stephan

+0

@Stephan你是對的。我的消息是解決方案#1不會刪除子文件夾。至少對於我來說 –

相關問題