i want to copy all files and folders from one drive to another drive using MS-DOS. How to do it?
I am trying xcopy I:\\*.* N:\\ But it copies only files, no
xcopy I:\\*.* N:\\
This worked for me On Windows 10,
xcopy /s {source drive..i.e. C:} {destination drive..i.e. D:} This will copy all the files and folders plus the folder contents.