Notifications
Clear all
BugOverflow
1
Posty
1
Users
0
Reactions
2,202
Widok
0
05/08/2015 6:47 pm
Topic starter
DOS/Batch file, create folder with date in format yyy-mm-dd
1 Answer
0
05/08/2015 6:47 pm
Topic starter
for format yyy-mm-dd use
for /f "tokens=1-3 delims=/" %%a in ("%date%") do md "%%a"