How can i use robocopy to copy only the difference between 2 folders to a third folder(and not the destination folder)

So if "SourceFolder" contains FileA , FileB , FileC and "DestinationFolder" contains FileA and FileB , I would like to see "DifferencesFolder" containing FileC.

link|improve this question

70% accept rate
feedback

1 Answer

You could have a batch file with WinMerge comparing the files, creating a list and then looping the list and copying files.

link|improve this answer
At this point of time, I would like to only use Robocopy. It is not a real constraint, but my deployment team is familiar with Robocopy. – trainer Mar 10 '11 at 23:00
Sorry, I use Robocopy a bit but would not sure if it can do this. I would have just used a batch file for quickness. – Paul McCowat Mar 10 '11 at 23:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.