Renaming Multiple Files at the Same Time

Written by Barry Dysert (last updated October 5, 2020)

It's possible to rename multiple files at the same time. In fact, there are a couple of ways to do it. Perhaps the simplest way is to use File Explorer. Say that you have a group of files such as what appears in the following figure: (See Figure 1.)

Figure 1. A set of files to be renamed.

To rename these files, create a selection set of the files (creating a selection set is covered under another tip) so that they are all selected. You can then press F2 (or right-click on a selected file and choose Rename from the Context menu) and type the "base name" you want each of your files to have. (See Figure 2.)

Figure 2. Renaming a selection of multiple files.

When you press Enter to complete the rename, each selected file will end up with the same base name with numbers following it in parentheses. (See Figure 3.)

Figure 3. The set of files after the rename.

There is another way to rename a set of multiple files. This second way uses the FOR command at the Command Prompt (displaying the Command Prompt is covered under another tip). Again, assume that you have the six files as shown in the first figure, above. To rename all six, go to the Command Prompt and type the following (terminating by pressing the Enter key):

C:\> FOR /L %I IN (1,1,6) DO REN 00000%I.JPG "Hawaii (%I).JPG"

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

How to Run a Program when Windows Starts

It's easy to have a program run when Windows starts. In fact, by using the Task Scheduler, you can have all sorts of ...

Discover More

Repairing Your System Using a System Repair Disk

If your system gets into a state where it cannot be started normally, this tip presents you with options of how you can ...

Discover More

Stopping Windows from Creating Thumbs.db Files

Many times, the automatically created Thumbs.db file is more trouble than it's worth. If you want to stop Windows from ...

Discover More
More WindowsTips

Getting Rid of Old Windows Updates

Microsoft is constantly updating Windows for various reasons. For most people, those updates are downloaded and installed ...

Discover More

Using Sync Center

Sync Center is a centralized place where you can deal with your offline files. You can do a manual sync, set up a sync ...

Discover More

Logging Robocopy Operations

If you schedule Robocopy operations, you may want to maintain log files of what happened. In this case, getting familiar ...

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 six more than 1?

There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)


Newest Tips