9
7
A little mishap happened earlier today and i am thinking i should have a copy of my external harddrive since 10% of it is very valuable. What is the best solution to keep two external harddrive in sync? i'll probably use one as regular and maybe use the other only to copy data. The easiest way to keep it in sync is to clear one drive and copy the other but 1T of data will take a long time.
Whats a good existing app that will keep them in sync? freeware preferred.
it looks like
robocopy C:\src C:\dst /mir /copyall
will do the trick (but requires admin rights to access/set the security attr with copyall) -edit- to note mir will delete files that dont exist on src like i wanted. – None – 2010-05-14T21:28:56.800There are a few more flags you might want to look at. For example /b allows you to copy directories even if you're not the owner, as long as you run robocopy as an admin. (I have a bunch of user folders -- Desktop, Documents, etc. -- from previous Windows installations on my external drives, and it's impossible to access them without either using that flag, or painfully changing the owner and permissions first.) You might also want to exclude junction points and symbolic links, which will get traversed unless you explicitly say otherwise. – Archagon – 2012-12-10T22:17:51.200