Windows 7 Task Scheduler to Move(Cut) files from one drive to another within Same PC

Joined
Aug 4, 2017
Messages
1
Reaction score
0
Hi Guys, Is there any way i can schedule the task of moving(not copying) files/Folders from one drive to another within Same PC?
 
Make a Batch (.bat) file to move your files, then use the scheduler to run the .bat file.

example "backupmove.bat" file:
move d:\backupfolder\backupfile.bkf x:\backupfolder\backupfile.bkf

(suppress prompting to confirm overwrite):
move /Y d:\backupfolder\backupfile.bkf x:\backupfolder\backupfile.bkf

HTH

:user:
 
Back
Top