Skip to main content

Move Files using CMD

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

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

Move Single File:

Step 1 :

Open CMD.

Step 2 :

Enter the following command in CMD.
move "Source Address" "Destination Address"
Note: Change both addresses according to your requirements.

Result :

Only selected single file will be moved.

Move Entire Folder:

Step 1 :

Open CMD.

Step 2 :

Enter the following command in CMD.
move "Source Folder Address\*.*" "Destination Address"
Note: Change both addresses according to your requirements.

Result :

All files in the selected folder will be moved.

Below is the video tutorial about moving files using CMD :


Comments