New
#1
Using RoboCopy
I'm trying to use RoboCopy to backup my data files to a USB stick and External HDD.
I created a folder in each destination called DataBackup and run the following command.
robocopy "d:\datafiles" "e:\databackup /e
Problem is it doesn't copy to that folder. It simply puts the folder DataFiles in the root of each drive and copies it's contents.
In fact the folder I specify in the command is removed after the copy.
How do I get robocopy to copy the folder to the folder I specify?
Also, after the initial copy, when I want to backup again, how to I tell robocopy to only replace files that has been changed since the last backup?
James