Need to be able to "schedule" a command line action using windows scheduler.
This is my command:
for /r C:\Users\bob\Downloads\Done\ %f in (*) do @move "%f" C:\Users\bob\Downloads\Done\
It flattens all files into the main folder.
The "for" command does not work as in a scheduler but is working in cmd.exe
I need a batch file or other code so that I can use the scheduler.
I read these, but I'm just not that cool: How to copy files from folder tree dropping all the folders with Robocopy?