cmd copy directory to another directory code example
Example 1: cmd copy all files to another folder
xcopy /s c:\Folder1 d:\Folder2
Example 2: copy command in cmd
COPY "filename" /Y
to overwrite the file in destination
xcopy /s c:\Folder1 d:\Folder2
COPY "filename" /Y
to overwrite the file in destination