Skip to main content

Copy Files using CMD

Now-a-days every one computer is full of files. Files are copied without using extra software but some users use third party software.

There multiple ways to copy files from one location to another but in this tutorial we will use CMD for copying files.

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.

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.

Result :

All files in the selected folder will be copied.

Below is the video tutorial about copying files using CMD :


Comments