|
| | |||||||
| Windows XP Discuss the Microsoft Windows XP Operating System |
| | LinkBack | Thread Tools |
| |||
| Batch file to rename with time and date Hi I have a batch file that renames a file and appends the time on the end of the filename. What I need it to do is append both the time and date at the same time. My line of code is: for /f "tokens=1-5 delims=:" %%d in ("%time%") do rename "filename.xls" "filename"%%d-%%e-%%f.xls I'm sure i can do this in one line but not sure how to add the %date% in correctly Any help appreciated Thanks |
| |||
| Re: Batch file to rename with time and date <alexanderd79@googlemail.com> wrote in message news:ca05d8ad-d2ab-4099-b622-87eb61ac9c49@e23g2000prf.googlegroups.com... > Hi > > I have a batch file that renames a file and appends the time on the > end of the filename. What I need it to do is append both the time and > date at the same time. My line of code is: > > for /f "tokens=1-5 delims=:" %%d in ("%time%") do rename > "filename.xls" "filename"%%d-%%e-%%f.xls > > I'm sure i can do this in one line but not sure how to add the %date% > in correctly > > Any help appreciated > > Thanks Perhaps something like this: for /F "tokens=1-8 delims=:/" %%a in ('echo %date% %time%') do echo ren "file.xls" "%%a-%%b-%%c %%d-%%e file.xls" |
| Bookmarks |
| Thread Tools | |
| |
| | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Batch Rename | Eric | Windows XP | 10 | 10-03-2007 09:30 PM |
| Windows Date/Time auto setting to wrong date/time | Shadofax | Windows XP | 4 | 05-08-2007 11:00 PM |
| dos batch script to make txt file with date in name | SANDY | Windows XP | 1 | 02-07-2007 01:32 PM |
| Rename in a batch file | simonc | Windows XP | 4 | 01-04-2007 06:18 AM |
| Rename in a batch file | simonc | Windows XP | 0 | 01-04-2007 06:18 AM |
| New To Technology Questions? | Do You Need Help with Your Computer or Device? | Do You Need Help with this site? |