Moving Files Using the Command Line

Written by Barry Dysert (last updated February 15, 2021)

1

If you don't mind doing a little more typing and a little less mouse clicking, you can perform a lot of actions from the command line. (Displaying the Command Prompt window is covered under another tip.) One thing you can do from the command line is to move files. The command-line command you use is MOVE and it takes two (or more) parameters. The first parameter specifies the file you want moved and the second parameter specifies to where the file should be moved.

So, let's say you have a file called "C:\Temp\BatFun.bat" and you want to move it to C:\Bat\BatFun.bat You would type the following at the command line:

C:\> MOVE C:\Temp\BatFun.bat C:\Bat\BatFun.bat

The BatFun.bat file in the \Temp directory will be moved to the \Bat directory. It will no longer exist in the C:\Temp directory, which is the main difference between COPY and MOVE. (See the tip titled Moving Files Using the Command Line for details of the COPY command.) Of course, you can specify whatever name you like for the destination, so you may have a \Temp\BatFun.bat file that you're developing and testing, but once you're satisfied with it you may want to move it to your \Bat directory and give it the name of DirList.bat. This is accomplished by just changing the name of the destination parameter:

C:\> MOVE C:\Temp\BatFun.bat C:\Bat\DirList.bat

You can use wildcard characters to move multiple files at a time. So, let's say you have several .bat files in your \Temp directory that are supposed to work together, and you want to move them all to your \Bat directory. Maybe the files are named C:\Temp\Dir1.bat, C:\Temp\Dir2.bat, and C:\Temp\Dir3.bat. To move them all to your \Bat directory the command would be:

C:\> MOVE C:\Temp\Dir?.bat C:\Bat

The wildcard character "?" stands for exactly one actual character in the source parameter. Note that you didn't need to specify anything except the destination directory (without the trailing backslash) as the second parameter. This is because MOVE will automatically use the file name specified by the first parameter as the file name to be used in the \Bat directory. In other words, you'll end up with a Dir1.bat, Dir2.bat, and Dir3.bat in your C:\Bat directory.

The MOVE command is similar to the COPY command but with two main differences:

  1. You cannot concatenate files with the MOVE command.
  2. MOVE removes the file from the source location instead of leaving it there.

 This tip (13101) applies to Windows 7, 8, and 10.

Author Bio

Barry Dysert

Barry has been a computer professional for over 35 years, working in different positions such as technical team leader, project manager, and software developer. He is currently a software engineer with an emphasis on developing custom applications under Microsoft Windows. When not working with Windows or writing Tips, Barry is an amateur writer. His first non-fiction book is titled "A Chronological Commentary of Revelation." ...

MORE FROM BARRY

Burning an Audio Disc

You can use your system to create audio CDs that you can listen to in other places, such as your car. You just have to ...

Discover More

Understanding Event Logs

Windows event logs are great resources to see what is "invisibly" going on with your system. By understanding the various ...

Discover More

Adjusting the Mouse Double-Click Speed

Sometimes your finger is either too fast or too slow to get the proper response from a mouse double click. This tip tells ...

Discover More
More WindowsTips

Understanding the Command Line For Loop

A niche command that sometimes comes in handy is the FOR loop. It has several forms and therefore can serve several ...

Discover More

Listing Folder and Directory Content Using Command Prompt

Using Command Prompt to generate file listing the contents of a directory is quick and easy. Here's how to do it.

Discover More

Quickly Finding Your IP Address

IP addresses identify your device on IP-governed networks. If you need to find your IP address quickly, you can use the ...

Discover More
Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is eight less than 8?

2021-02-15 15:14:57

Dan A. Peters

I think you made a typo that may be a little confusing to your readers.....

Ref, "Moving Files Using the Command Line" article, you say...
...See the tip titled Moving Files Using the Command Line for details of the COPY command... but the word, "Moving" should be "Copying" because when you select the link, the "Copying Files Using the Command Line" article is displayed.
Sincerely,
Dan


Newest Tips