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

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -