This awesome blogger theme comes under a Creative Commons license. They are free of charge to use as a theme for your blog and you can make changes to the templates to suit your needs.
RSS

DOS下移除多天前檔案的Batch程式範例

如果在DOS下,想用Batch Script刪除某個目錄下幾天前的檔案或目錄,可以用以下的範例來做。

這是針對檔案在中文Windows XP下所寫得範例,如果要刪除目錄還要依照裡頭的說明修改一下才行。

:: --------DELOLD.BAT----------
@echo off
SET OLDERTHAN=%1
SET PATHFILES=%2
IF NOT DEFINED OLDERTHAN GOTO SYNTAX
IF NOT DEFINED PATHFILES GOTO SYNTAX

for /f "tokens=1" %%i in ('date /t') do set thedate=%%i

0 意見