How can I rename a file with todays date?
August 30th, 2007 . by AliYou can use this simple batch file to rename a file and append today’s date:
set Day=%Date:~0,2%
set Mth=%Date:~3,2%
set Yr=%Date:~6,4%
rename c:\test.log test_%Day%-%Mth%-%Yr%.log

(5 votes, average: 4.40 out of 5)