Now-a-days every one computer is full of files. Files are copied without using extra software but some users use third party software.
Copy Single File:
Step 1 :
Open CMD.
Step 2 :
Enter the following command in CMD.
xcopy "Source Address" "Destination Address"
Note: Change both addresses according to your requirements.
xcopy "Source Address" "Destination Address"
Note: Change both addresses according to your requirements.
Result :
Only selected single file will be copied.
Copy Entire Folder:
Step 1 :
Open CMD.
Step 2 :
Enter the following command in CMD.
xcopy "Source Folder Address\*.*" "Destination Address"
Note: Change both addresses according to your requirements.
xcopy "Source Folder Address\*.*" "Destination Address"
Note: Change both addresses according to your requirements.
Result :
All files in the selected folder will be copied.
Comments
Post a Comment