I have written a rather small batch file that does some date calculations for me.
However, I have stumbled upon a minor problem:
Whenever I try to increment my month var, it simply sets the var to the desired incrementation. Code:
: How much time should we add? Default is 1 month
SET timeadd=1
: Set the date variables to build needed format
SET YYYY=%date:~-4%
SET MM=%date:~3,2%
SET DD=%date:~0,2%
if not %MM%==12 (
SET /A MM=MM+timeadd
SET changed=1
)
After the declaration, the month var would today (August 17th) be "08".
After the if block however, this var would change to "1".
I could guess that this is a conversion problem (date beeing a string, timeadd beeing an integer), however I really have no clue how to solve this.