b-man Posted September 14, 2012 Posted September 14, 2012 i use xcopy in a cmd file to backup some of my files heres an exampleXCOPY "T:\my user files" "V:\" /D /E /C /R /I /K /Y pauseexitthe problem is if i move/delete things in the main folder then i run my xcopy cmd file it recopies the files i have moved and doesnt delete the ones i have deleted is there a way i can set it to mirror or sync that folder?
jaclaz Posted September 14, 2012 Posted September 14, 2012 i use xcopy in a cmd file to backup some of my files heres an exampleXCOPY "T:\my user files" "V:\" /D /E /C /R /I /K /Y pauseexitthe problem is if i move/delete things in the main folder then i run my xcopy cmd file it recopies the files i have moved and doesnt delete the ones i have deleted is there a way i can set it to mirror or sync that folder?WHAT is your "main" folder?WHAT is your destination folder?WHICH OS is that?Xcopy is supposed to be eXact COPY, it misses many "sync" functionality.Robocopy or Strarc:http://www.ltr-data.se/opencode.html/may be more suited.BUT is what you are trying to do that is not clear to me, as XCOPY does have the /U switch:http://ss64.com/nt/xcopy.html/U Copy only files that already exist in destination.that may be what you are afterjaclaz
b-man Posted September 15, 2012 Author Posted September 15, 2012 im running win7i have a folder on my computer with the files i want to backup, being "T:\my user files", the destination is the "V:\" driveif i moved or delete a file in T:\my user files and execute the backup to destination drive of V:\ it copies the moved file again but it still leaves it in its old location (in the backup) and if a file is deleted it doesnt delete it from the backupthe /U switch is to only update files in that directory where i want to add new ones aswell and if the files moves it then wouldnt update it anyway..XCOPY "T:\my user files" "V:\" /D /E /C /R /I /K /Y pauseexitlooks like i will have to use one of those other ones you suggested
jaclaz Posted September 15, 2012 Posted September 15, 2012 looks like i will have to use one of those other ones you suggestedYep.You may also want to try a "dedicated" sync tool:http://blinksync.sourceforge.net/jaclaz
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now