Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
add date to file name
Name: Lucas Date: July 23, 2002 at 08:15:18 Pacific
Comment:
In dos batch file, how do you add date to file name?
Summary: Is there a way to get the date into the file name and move yesterdays file to another folder location ? I have to log stuff into a file, by date. At the start of the day, yesterdays file needs to be p...
Summary: Need Batch that only copies Current time and Current date to file. Here is the batch i'm using. @ECHO OFF ECHO. |TIME >> log.txt COPY LOG +TIME >> log.txt ECHO. |DATE >> log.txt COPY LOG +DATE >> log...
Summary: My Windows 2000 server will receive a I001.txt everyday. I want to rename the file name daily. Thus, I had write a batch file like this: for /f "tokens=1-3 delims=/ " %%a in ('DATE /T') do set Date=%%...