在要刪除資料夾(destination)同目錄建立乙個空資料夾(empty_dir);
開啟cmd.exe ,切換至要刪除的檔案的目錄 cd destination;
執行 robocopy destination dest_dir /purge;
指令的意思是拷貝空資料夾到目標資料夾,同時刪除源中不再存在的目標檔案,達到清空目標資料夾的路徑。延伸
*robocopy,它是windows下乙個命令列的目錄複製命令,命令如下:
命令語法:robocopy source destination [file [file]…] [options]
源:源目錄(驅動器:\路徑或\伺服器\共享\路徑)
目標:目標目錄(驅動器:\路徑或\伺服器\共享\路徑)
檔案:要複製的檔案(名稱/萬用字元: 預設為 「.「)
/purge:刪除源中不再存在的目標檔案/目錄。*
tomcat下檔案路徑
root資料夾下 訪問路徑為 localhost 8080 a.txt 訪問路徑 localhost 8080 test b.txt 第二種 在tomcat安裝路徑下的conf server.xml檔案中,找到host節點元素,在host節點內定義子節點context節點,該節點必須定義docbas...
WinCE下檔案的路徑
在wince下,不能用相對路徑,必須用絕對路徑 full path 來定位檔案。如,在program files testprogram目錄下的abc.txt檔案,只能用 program files testprogram abc.txt來定位,而不能用abc.txt定位。如 private voi...
Windows下檔案列舉,搜尋
windows下列舉檔案用的函式是 findfirstfile 和 findnextfile 另外乙個結構體是win32 find data 以下是msdn對於win32 find data的定義 typedef struct win32 find data win32 find data,pwin...