Is it possible to merge 2 folders with similar data structures with robocopy? E.g. I have a large music database, I want to merge another folder into this database but keep all the files in the database the same, except if any files with the same name exist, overwrite them. A structure being like
C:\Music\Queen\
with files
C:\Music\Queen\We will rock you
C:\Music\Queen\Dont stop me now
And I want to merge a structure
D:\Music\Queen\
with files
D:\Music\Queen\Dont stop me now
D:\Music\Queen\Somebody to love
With the end result
C:\Music\Queen\We will rock you
C:\Music\Queen\Dont stop me now //overwritten! Important!
C:\Music\Queen\Somebody to love
I have tried
robocopy "C:\Music\" "D:\Music\" /E /XX /IS
But this doesn't overwrite files with the same name. Any advice?
Don't use
/XX
.before
Command
robocopy music1 music2 /IS /E
After
file contents