I need to know how to name an output file in XP so that the file name looks like the following:
02/14/2007.qic
Can I use the %date% variable and how would I do it?
02/14/2007.qic
Can I use the %date% variable and how would I do it?
@echo off for /F "tokens=1,2 delims= " %%i in ('date /t') do ( echo %%j echo test > %%j.qic ) )
@echo off for /F "tokens=1,2 delims= " %%i in ('date /t') do ( echo %%j for /F "tokens=1,2,3 delims=/" %%a in ("%%j") do echo test>%%a-%%b-%%c.qic )
Comment