Creating a FileName as a Timestamp in a Batch Job... - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T20:51:07Zhttp://stackoverflow.com/feeds/question/1064557http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job0Creating a FileName as a Timestamp in a Batch Job...Eoin Campbell2009-06-30T16:03:02Z2009-07-04T03:41:59Z
<p>Hey Guys,</p>
<p>We have a batch job that runs every day and copies a file to a pickup folder.
I want to also take a copy of that file and drop it into an archive folder with the filename</p>
<pre><code> yyyy-MM-dd.log
</code></pre>
<p>Whats the easiest way to do this in a Dos Batch Job...</p>
<p>I'm basically looking for an equivalent of the unix command</p>
<pre><code>cp source.log `date +%F`.log
</code></pre>
http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job/1064641#10646411Answer by Secko for Creating a FileName as a Timestamp in a Batch Job...Secko2009-06-30T16:19:26Z2009-06-30T17:38:31Z<p>Maybe this can help:</p>
<pre><code>echo off
@prompt set date=$d$_ set time=$t$h$h$h
echo some log >> %date% %time%.log
exit
</code></pre>
<p>or</p>
<pre><code>echo off
set v=%date%.log
echo some log >> %v%
</code></pre>
http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job/1064648#10646483Answer by opello for Creating a FileName as a Timestamp in a Batch Job...opello2009-06-30T16:19:50Z2009-06-30T16:26:41Z<pre><code>CP source.log %DATE:~-4%-%DATE:~4,2%-%DATE:~7,2%.log
</code></pre>
<p>But it's likely locale dependent. I'm not sure if %DATE% is localized, or depends on the format specified for the short date in Windows.</p>
http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job/1064967#10649670Answer by RealHowTo for Creating a FileName as a Timestamp in a Batch Job...RealHowTo2009-06-30T17:33:35Z2009-06-30T17:33:35Z<p>Create a file with the current date as filename (ex. 2008-11-08.dat)</p>
<pre><code>echo hello > %date%.dat
</code></pre>
<p>With the current date but without the "-" (ex. 20081108.dat)</p>
<pre><code>echo hello > %date:-=%.dat
</code></pre>
http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job/1065157#10651570Answer by totorocat for Creating a FileName as a Timestamp in a Batch Job...totorocat2009-06-30T18:15:04Z2009-06-30T19:56:24Z<p>Here is a locale independent solution (copy to a file named SetDateTimeComponents.cmd):</p>
<pre><code>@echo off
REM This script taken from the following URL:
REM http://www.winnetmag.com/windowsscripting/article/articleid/9177/windowsscripting_9177.html
REM Create the date and time elements.
for /f "tokens=1-7 delims=:/-, " %%i in ('echo exit^|cmd /q /k"prompt $d $t"') do (
for /f "tokens=2-4 delims=/-,() skip=1" %%a in ('echo.^|date') do (
set dow=%%i
set %%a=%%j
set %%b=%%k
set %%c=%%l
set hh=%%m
set min=%%n
set ss=%%o
)
)
REM Let's see the result.
echo %dow% %yy%-%mm%-%dd% @ %hh%:%min%:%ss%
</code></pre>
<p>I put all my .cmd scripts into the same folder (%SCRIPTROOT%); any script that needs date/time values will call SetDateTimeComponents.cmd as in the following example:</p>
<pre><code>setlocal
@echo Initializing...
set SCRIPTROOT=%~dp0
set ERRLOG=C:\Oopsies.err
:: Log start time
call "%SCRIPTROOT%\SetDateTimeComponents.cmd" >nul
@echo === %dow% %yy%-%mm%-%dd% @ %hh%:%min%:%ss% : Start === >> %ERRLOG%
:: Perform some long running action and log errors to ERRLOG.
:: Log end time
call "%SCRIPTROOT%\SetDateTimeComponents.cmd" >nul
@echo === %dow% %yy%-%mm%-%dd% @ %hh%:%min%:%ss% : End === >> %ERRLOG%
</code></pre>
<p>As the example shows, you can call SetDateTimeComponents.cmd whenever you need to update the date/time values. Hiding the time parsing script in it's own SetDateTimeComponents.cmd file is a nice way to hide the ugly details, and, more importantly, avoid typos.</p>
http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job/1081438#10814380Answer by ghostdog74 for Creating a FileName as a Timestamp in a Batch Job...ghostdog742009-07-04T03:41:59Z2009-07-04T03:41:59Z<p>1) you can download GNU <a href="http://gnuwin32.sourceforge.net/packages/coreutils.htm" rel="nofollow">coreutils</a> which comes with GNU date</p>
<p>2) you can use vbscript, which makes date manipulation easier in windows.</p>
<pre><code>Set objFS = CreateObject("Scripting.FileSystemObject")
strFolder = "c:\test"
Set objFolder = objFS.GetFolder(strFolder)
current=Now
mth = Month(current)
d = Day(current)
yr=Year(current)
If Len(mth) <2 Then
mth="0"&mth
End If
If Len(d) < 2 Then
d = "0"&d
End If
timestamp=yr & "-" & mth &"-"& d
For Each strFile In objFolder.Files
strFileName = strFile.Name
If InStr(strFileName,"file_name_here") > 0 Then
BaseName = objFS.GetBaseName(strFileName)
Extension = objFS.GetExtensionName(strFileName)
NewName = BaseName & "-" & timestamp & "." & Extension
strFile.Name = NewName
End If
Next
</code></pre>
<p>run the script as
c:\test> cscript /nologo myscript.vbs </p>