Windows下批次刪除N天前的檔案

brightking716發表於2010-08-05

現在要將一臺遠端windows機器的備份檔案每天定時copy到本地windows 2003機器,並且刪除過期的檔案,然後放到任務計劃中自動執行。

CMD批處理指令碼如下:

REM Start copy all bak files from remote machine,

REM Then,remove the files beyond 3 days.

copy /Y //192.168.0.75/g$/DB_backup/CVSHelper/*.bak .

forfiles /m *.bak /d -3 /c "cmd /c del @file /f"

REM End

[@more@]Reference:http://hi.baidu.com/runwa/blog/item/ac50db1f4ddaebffe1fe0bd8.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12472709/viewspace-1036185/,如需轉載,請註明出處,否則將追究法律責任。

相關文章