Depending on your regional settings, you can use the value of the date command:
@echo off
for /f "tokens=1,2" %%x in ('date /t') do (
set dow=%%x
)
if %dow%=Mon set folder=c:\Monday
if %dow%=Tue set folder=c:\Tuesday
.
.
.
Try running the
date /t command at the command prompt. You may not even have the day of week showing in the output which will make this all the more difficult.
Good luck.
