- Oct
- 364
- 17
I routinely create a set of monthly or daily folders in these formats:
< year>
05 - May 2020
06 - Jun 2020
07 - Jul 2020
08 - Aug 2020
09 - Sep 2020
10 - Oct 2020
<daily>
01
02
...
10
11
The _month and _day variables don't zero-pad the numbers, so I wind up having to write something like:
echo %@right[2,0%_month]
It would simplify this to have a set of zero-padded date and time variables equivalent to _month, _day, _dow, _doy, _hour, etc. Plus, adding those should be pretty simple.
< year>
05 - May 2020
06 - Jun 2020
07 - Jul 2020
08 - Aug 2020
09 - Sep 2020
10 - Oct 2020
<daily>
01
02
...
10
11
The _month and _day variables don't zero-pad the numbers, so I wind up having to write something like:
echo %@right[2,0%_month]
It would simplify this to have a set of zero-padded date and time variables equivalent to _month, _day, _dow, _doy, _hour, etc. Plus, adding those should be pretty simple.