What I already have: %date%
is the windows variable that stores the current date. When I use echo %date%
the value Tue 07/25/2017
is correctly printed.
But when I try to do mkdir %date%
the created folder is Tue 07
because windows does not recognize /
as a valid character.
How do I get around this?