在WINDOWS下刪除幾天前的檔案
在WINDOWS下,可建立BAT指令碼執行,放入計劃任務即可自動執行:
注意:指定目錄的時候不要使用雙引號,加了雙引號可能會導致無法執行該命令。
forfiles /p E:\DB_BAK\ /s /m *.rar /d -7 /c "cmd /c del @path"
刪除目錄E:\DB_BAK\ 下 以*.rar結尾的 7天以前的檔案
注意:
1、如果在CMD或BAT指令碼執行forfiles命令報錯說該命令不存在,需將該命令複製到C盤的windows目錄下,如:
安裝了作業系統後就會存在的該檔案:C:\Windows\System32\forfiles.exe
將該檔案複製到C:\Windows\目錄下即可在CMD控制檯進行該命令的呼叫。
forfiles.exe檔案預設存在的路徑:(不同作業系統可能存在不同的路徑)
C:\Windows\System (Windows 95/98/Me)
C:\WINNT\System32 (Windows NT/2000)
C:\Windows\System32 (Windows XP, Vista)
C:\Windows\System32 (Windows 7/8/2008r2)
C:\Windows\SysWOW64 (Windows 7/8/2008r2)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/28371090/viewspace-1824296/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Windows下批次刪除N天前的檔案Windows
- windows刪除幾天前檔案的批處理命令Windows
- Windows bat批處理刪除指定N天前的檔案WindowsBAT
- 【轉載】windows下刪除指定日期前的檔案Windows
- windows 下刪除.svn檔案Windows
- 指定刪除幾天前的索引資料索引
- windows下刪除過期的檔案Windows
- linux自動刪除N天前檔案Linux
- linux下實現刪除一個檔案每行的前幾列Linux
- 查詢一天前的日誌檔案刪除
- Windows Linux 刪除N天之前的檔案指令碼WindowsLinux指令碼
- linux下刪除指定日期前的檔案Linux
- 刪除31天前以zking開標頭檔案
- 在Linux中,有一堆日誌檔案,如何刪除7天前的日誌檔案?Linux
- windows 下 檔案內容清理且不刪除-拾億Windows
- 刪除當前目錄下的所有可執行檔案
- windows 7下刪除檔案開啟型別的方法Windows型別
- windows.old可以刪除嗎?windows.old檔案的刪除方法Windows
- 趁今天生日,分享下幾天前弄的檔案管理模組。
- Linux下批量刪除空檔案或者刪除指定大小的檔案Linux
- Windows forfiles(刪除歷史檔案)Windows
- 刪除七天以前檔案的指令碼指令碼
- windows刪除檔案的批處理操作Windows
- 前幾天手工刪除測試資料庫並重建的指令碼資料庫指令碼
- Linux下刪除昨天的檔案Linux
- Windows & Unix 檔案格式之迷 < VI下刪除文字中的^M>Windows
- Windows 10刪除備份檔案方法Windows
- 查詢當前以txt副檔名且建立時間1天前的檔案,然後將其刪除
- 檔案的刪除
- LINUX 使用批量刪除檔案的幾種方法Linux
- windows/linux自動備份mysql並刪除7天前的備份WindowsLinuxMySql
- shell指令碼之刪除固定天數之前的檔案指令碼
- 刪除檔案
- Linux保留幾個檔案其餘刪除Linux
- windows10中的windows的系統舊檔案如何刪除Windows
- 在linux及unix系統下批次刪除oracle檔案LinuxOracle
- windows下自動刪除過期檔案的指令碼Windows指令碼
- windows下刪除前一天備份批處理Windows