How to copy dvd files and folder's to your folder using Command Prompt
To copy a single file-->copy source destination
for example :- copy D:\ts\steps.txt E:\Newfolder
To copy multiple files-->copy source1 source2 destination
for example :- copy D:\t\test.txt D:\t\avx.txt E:\Newfolder
You can also use robocopy command more!..
make like robocopy (source file) (destination file) copy options and file to copy.. Eg: (in dvd in partition D:)
robocopy D:\ C:\users\user_name\desktop\newfolder /s *
This command will copy everything in D:\ (which is the dvd drive) to your desktop folder named new folder and /s means it will copy all sub directories except empty ones .. then the * means all files in the D:\ partition!...
Comments
Post a Comment
Please avoid link comments