I need to copy a directory from one directory to multiple drives (the drives are external storage devices). After searching I found the MS DOS command xcopy C:\ F:\ /e. This command only copies a file to one drive at a time, it doesn’t copy to multiple drives. Is there any way to copy a file from one drive to many drives?
I need to copy a directory from one directory to multiple drives (the drives
Share
A small batch file may help to achieve what you need.
save the code to
%SystemRoot%\system32\mcopy.bat, thenmcopy some-file e: f:\some-directory g:\some-directory-2 h: i:…