What would the Windows command line script be to rename a folder from the current month, to the current month - 3, using the format YYYY-MM ?
e.g.:
c:\myfiles\myFolder\
should become:
c:\myfiles\2009-01\
|
|
What would the Windows command line script be to rename a folder from the current month, to the current month - 3, using the format YYYY-MM ? e.g.: c:\myfiles\myFolder\ should become: c:\myfiles\2009-01\
|
|||
|
|
|
|
For my locale, I need something different. Also you need to deal with single-digit months, I suppose.
|
||
|
|
|
The version of the answered question for UK date format (DD-MM-YYYY) is: setlocal @REM example: 11-06-2009 set year=%stamp:~6,4% set month=%stamp:~3,2% @REM subtract 3 months @REM test if negative (we rolled back beyond 1st January) set /a year=%year%-1 @REM prepend with zero for single-digit month numbers @REM take last 2 digits of THAT set newFolder=%year%-%month% move c:\myfiles\myFolder\ %newFolder% endlocal |
||
|
|
|
|
You will have to dissect the contents of For my locale (which uses standard ISO 8601 date format) I could just use the following:
However, depending on the date format you use it may look slightly different. |
||
|
|
|
|
ren *-04 *-01 |
||
|