Copying Files Using the Command Line

Written by Barry Dysert (last updated July 3, 2017)

3

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 copy files. The command-line copy command is COPY and it takes two (or more) parameters. The first parameter specifies the file that is to be copied, and the second parameter specifies to where the file should be copied.

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

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

The BatFun.bat file in the \Temp directory remains there and a copy of it is created in the \Bat directory. 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 copy 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:\> COPY C:\Temp\BatFun.bat C:\Bat\DirList.bat

You can use wildcard character to copy 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 copy 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 copy them all to your \Bat directory the command would be:

C:\> COPY 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 COPY automatically uses 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 COPY command can also be used to concatenate (combine) files. This is done by specifying the files that are to be concatenated as the source parameter but separated by plus signs. Then you give exactly one file name as the destination parameter. All of the files separated by the plus signs will then be appended to one other, it the order specified, and that concatenated file is created where the destination parameter indicates.

So perhaps you have a few text files in your C:\Temp directory called Text1.txt, Text2.txt, and Text3.txt. You want to concatenate them into a master file (we'll also put it in your \Temp directory) called TextAll.txt. This can be done by using the following command:

C:\Temp> COPY Text1.txt+Text2.txt+Text3.txt TextAll.txt

Or you can give your fingers a break and use wildcards to achieve the same purpose:

C:\Temp> COPY Text?.txt TextAll.txt

So you don't technically have to use plus signs to separate the source files. In reality you just need to have multiple source files (whether separated by plus signs or indicated via wildcard characters) and exactly one destination file.

As with most command-line statements, there are switches that can be used with the COPY command in order to specify certain types of behavior. You can display the full syntax for the command by just invoking it and appending the "/?" switch like so:

C:\Temp> COPY /?

By looking at this output you can specify "/Y", for example, to tell COPY not to ask you about overwriting an existing file.

 This tip (13098) 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

Deleting a Saved Search

Windows Explorer has a good search utility built into it. As you use it, you may wish to delete a previously saved search ...

Discover More

Creating and Using Compressed Folders

If you're low on disk space but still want to keep your files online, you might consider moving them to compressed ...

Discover More

Saving a Windows Search

Windows has a built-in search utility that allows you to search for strings inside of files. You can even save your ...

Discover More
More WindowsTips

Generate a Wireless Network Report

If you have Wi-Fi connection problems, Windows 10 can provide a report to help diagnose possible issues. Using Command ...

Discover More

Displaying the Command Prompt in Windows 8

Some commands require the use of the command prompt window. How you display that essential window in Windows 8 can be a ...

Discover More

Setting Time Limits for Windows 10 Users

If your computer is set up in crowded environment, it may be helpful to establish times that an account can be used. You ...

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 6 - 0?

2017-07-07 04:21:35

Neil Lomas

Thanks Barry, that worked fine.


2017-07-06 06:02:00

Barry

The COPY command handles file names containing spaces just fine. Just include the file name within quotes, for example,

C:\>COPY "file with spaces.txt" "C:\New Folder\file with spaces.txt"


2017-07-06 05:49:38

Neil Lomas

For a long time, I have been unable to copy a file (using Windows Explorer), as it just crashes, but there is no problem moving a file. However, I can't move a file between disks as this automatically tries to copy instead. I can, however, move a file between my tablet or mobile phone (but not my camera!) and my main hard drive, as they are seen as media devices, not disks.

Will the COPY command handle filenames containing spaces or do I need to rename them first?


Newest Tips