Batch file to move files created daily to a specific month folder

Solution 1:

Make subdirectories named 01 through 12 under the source directory where the files land.

Make symlinks using MKLINK a la

MKLINK /D "C:\Users\<yourusername>\Documents\Monthlies\01" "M:\January"

then harvest today's date ith

FOR /F “TOKENS=1,2 eol=/ DELIMS=/ ” %%A IN (‘DATE/T’) DO SET mm=%%B

then copy the files in question from the source to C:\Users\\Documents\Monthlies\%%B which will also appear as M:\January .