Attach Date/Time Stamp To A File - Can Be Used For Automated Backups
Here is an interesting one. I found a way to take the %date% environment variable, and turn it into a valid string for a filename - without any extra programs or scripts.
For the longest time I used a little utility I created to do this. The problem with that is the utility needs to be around if you want to send the batch file to someone.
What I didn’t know that was that you can use this character combination ‘:~’ to pull a substring out of an environment variable. That is when I realized you could use this to pull out parts of the current date (or time).
Here is how it works. Lets take the %date% variable and print it out
echo %date%
It comes back …At least today
.. with
Thu 02/15/2007
Not sure if the length of the day changes. It may be always the same. To be safe we can pull the year, month and day starting from the right.
The :~ substring command works like this:
:~[START POS],[LENGTH]
If [START_POS] is positive or zero the substring will start from the left. If the number [START_POS] is negative it will start from the right. And [LENGTH] is the number of characters in the opposite direction of the starting point.
I know this might be confusing at first, but you will see what I am talking about.
If we wanted to get the current year we could start 4 from the end, and 4 in length. Like this:
echo %date:~-4,4%
For the month we start 7 from the right (Length of Year + Length of Month + 1 Slash)
echo %date:~-7,2%
For the day we start 10 from the right (Length of Year + Length of Month + Length Of Day + 2 Slashes)
echo %date:~-10,2%
Bringing it all together. Lets say I zipped up a folder every night for archival purposes, and wanted a different filename for each day (Not sure if this pkzip syntax is correct, but that is not important for our discussion here)
pkzip c:\ImportantFolder\*.* c:\TempZip.zip
ren
C:\TempZip.Zip c:\TempZip_%date:~-4,4%%date:~-7,2%%date:~-10,2%.zip
Which renames our C:\TempZip.Zip to C:\TempZip_20070215.zip
Perfect. I get a date stamped file, and no special vbscript, or command line program is needed.
The same method could be used for the current time
I am still amazed this little trick works.
Another version of the same thing:
:: Set the date to the format you desire once and store it as a variable
Set TDate=%date:~10,4%%date:~4,2%%date:~7,2%
::Start a Loop which goes to a subroutine through a ‘call’ function (This allow you to assign variables..
FOR %%V IN (%1) DO Call :DoLoop
::Start your complex processing inside this lable so that you can do as many lines as you line inside your loop
:DoLoop
:: Set Single-sided variable to double-sided variable
set OFullFileName=%%V
I have a bat that can help u try this
set mm= %Date:~3,2%
set dd = %Date:~0,2%
set yy = %Date:~8,2%
ren
C:\Name.txt C:\Name_%mm%dd%yy%.txt