Aug 30
How can I rename a file with todays date?
General, Scripting, Windows 2000, Windows 2003 Add commentsYou 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
Recent Comments