cmd - compare folders and copying non identical folders and files -


i have 2 folders folder1 , folder2

folder1 has

file1 file2 folder3 folder4 

and folder2 has

file1 file2 file3 folder3 folder5 

here want copy thats not present in folder1 folder2 in case copy file3 , folder5 folder1

thanks in advance answers.

try this:

xcopy /e /s /d "folder2" "folder1" 

Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -