www.google.com would be one place to start. A better place is
http://groups.google.com. You'll find millions of posts with this question.
A common answer is something like:
for /f "tokens=2-4 delims=/ " %%a in ('date /t') do (set theYear=%%c& set
theMonth=%%b& set theDay=%%a)
mkdir %theYear%-%theMonth%-%theDay%
Ray at work
"Mike" <(E-Mail Removed)> wrote in message
news:197d01c426e4$d7a06ab0$(E-Mail Removed)...
> I would like to create a directory using the current date
> by using a batch file. Does anyone have any info on the
> proper syntax to get this done? Any assistance would be
> greatly appreciated. Thanks in advance.