Creating a FileName as a Timestamp in a Batch Job... - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:51:07Z http://stackoverflow.com/feeds/question/1064557 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job 0 Creating a FileName as a Timestamp in a Batch Job... Eoin Campbell 2009-06-30T16:03:02Z 2009-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#1064641 1 Answer by Secko for Creating a FileName as a Timestamp in a Batch Job... Secko 2009-06-30T16:19:26Z 2009-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 &gt;&gt; %date% %time%.log exit </code></pre> <p>or</p> <pre><code>echo off set v=%date%.log echo some log &gt;&gt; %v% </code></pre> http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job/1064648#1064648 3 Answer by opello for Creating a FileName as a Timestamp in a Batch Job... opello 2009-06-30T16:19:50Z 2009-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#1064967 0 Answer by RealHowTo for Creating a FileName as a Timestamp in a Batch Job... RealHowTo 2009-06-30T17:33:35Z 2009-06-30T17:33:35Z <p>Create a file with the current date as filename (ex. 2008-11-08.dat)</p> <pre><code>echo hello &gt; %date%.dat </code></pre> <p>With the current date but without the "-" (ex. 20081108.dat)</p> <pre><code>echo hello &gt; %date:-=%.dat </code></pre> http://stackoverflow.com/questions/1064557/creating-a-filename-as-a-timestamp-in-a-batch-job/1065157#1065157 0 Answer by totorocat for Creating a FileName as a Timestamp in a Batch Job... totorocat 2009-06-30T18:15:04Z 2009-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" &gt;nul @echo === %dow% %yy%-%mm%-%dd% @ %hh%:%min%:%ss% : Start === &gt;&gt; %ERRLOG% :: Perform some long running action and log errors to ERRLOG. :: Log end time call "%SCRIPTROOT%\SetDateTimeComponents.cmd" &gt;nul @echo === %dow% %yy%-%mm%-%dd% @ %hh%:%min%:%ss% : End === &gt;&gt; %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#1081438 0 Answer by ghostdog74 for Creating a FileName as a Timestamp in a Batch Job... ghostdog74 2009-07-04T03:41:59Z 2009-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) &lt;2 Then mth="0"&amp;mth End If If Len(d) &lt; 2 Then d = "0"&amp;d End If timestamp=yr &amp; "-" &amp; mth &amp;"-"&amp; d For Each strFile In objFolder.Files strFileName = strFile.Name If InStr(strFileName,"file_name_here") &gt; 0 Then BaseName = objFS.GetBaseName(strFileName) Extension = objFS.GetExtensionName(strFileName) NewName = BaseName &amp; "-" &amp; timestamp &amp; "." &amp; Extension strFile.Name = NewName End If Next </code></pre> <p>run the script as c:\test> cscript /nologo myscript.vbs </p>