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?
 

muckshifter

I'm not weird, I'm a limited edition.
Moderator
Joined
Mar 5, 2002
Messages
25,739
Reaction score
1,204
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:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top