This is why I reccomend Robocopy
Robocopy is a tool that just copies data..
as a test..
do this on your pc..
Create the folders..
C:\Test1
C:\Test2
now put a file in C:\Test1 (something that's say 300mb in size)
---
Now open a cmd window
(Start, run, cmd <hit enter>)
Type in..
robocopy /mir "C:\Test1" "C:\Test2"
<hit enter>
You'll see Robocopy start and it will copy all files from Test1 to Test2.
Any new files you add to Test1 will be copied the next time you've run that same command..
-got the basics of it now?
To create a 'bat' file, which is a simple file made in notepad that you can double click to run that command I've given you above
Open up Notepad, type in..
Code:
robocopy /mir "C:\Test1" "C:\Test2"
pause
Save this with Notepad on your Desktop as something like "backup script.bat" -be sure to save it as .bat and not .bat.txt
Now if you double click this file, it will run the robocopy script and will pause at the end.
-It's really worth trying this out, it's easy to use and a fun tool to learn
Once you get the basics of using bat files, you can do a lot with them.