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
Post a Comment