Starten: Rename File Extensions in Bulk, Including Files in Subfolders
Starten: Rename File Extensions in Bulk, Including Files in Subfolders
2/21/2015
Windows Download
Windows 7
Batch Rename
Download
starten
Kostenloser Sofort-Download
Schnell & einfach!
This post talks about how to rename file extensions in bulk using simple commands. No 3rd party tools are required. At the end of the
post, you can find a download link for the batch file script.
*.txt
The drawback with this command is, we cant use it to rename file extensions recursively in the sub folders. Next, well look at a
solution which allows us to do so.
For example, if you want to rename all xml files to txt files, the command would be as below
forfiles /S /M *.xml /C "cmd /c rename @file @fname.txt"
If you want a batch file script, it can be downloaded from the below link:
Batch file script for renaming file extensions in bulk
http://www.windows-commandline.com/rename-file-extensions-bulk/
1/6
2/21/2015
Additional Reading...
Batch file : How to get current directory
Batch file : ECHO command
Windows environment variables
{ 17 comments read them below or add one }
DPS Chawla February 24, 2014 at 5:17 pm
Great Thanks REgards
Reply
atul June 17, 2014 at 11:35 am
thanks for suggestion
Reply
devilJake June 18, 2014 at 4:08 pm
I want only the extensions of files starting with certain type of names to be renamed, within the folder as well as subfolders.
How can I do it?
For example:
rename all files starting with the name *-common.xml to *-common.xml.txt
The other .xml files have to be left intact.
Reply
admin January 14, 2015 at 8:18 pm
This should do
ren *-common.xml *-common.xml.txt
http://www.windows-commandline.com/rename-file-extensions-bulk/
2/6
2/21/2015
This doesnt work if the file name has spaces in it, (OS Win XP Sp3).
But I found other solution that works flawlessly
FOR /R %f IN (*.kar) DO REN "%f" *.mid
It works only if you dont have files with the same name and two different extensions.
ex: 1.mo.po and 1.mo. You would get error in renaming as a file already exists with the name.
Let us know if it works for your usecase.
steve szajko January 14, 2015 at 7:44 pm
http://www.windows-commandline.com/rename-file-extensions-bulk/
3/6
2/21/2015
A virus added .zwrkocj to all file types, how would I remove that?
Reply
admin January 14, 2015 at 8:15 pm
If it has converted files like file.ext to file.ext.zwrkocj then I think you can run the below to get back to original state.
ren *.zwrkocj *.
Popular Posts
Add user to group from command line (CMD)
How to create large dummy file
Find windows OS version from command line
Add new user account from command line (CMD)
Delete directory/folder from command line
Get mac address from command line (CMD)
Enable remote desktop from command line (CMD)
Xcopy command : syntax and examples
Rename file extensions in bulk, including files in subfolders
Change computer name from command line
Change windows wallpaper from command line
Disable or Enable Windows Automatic updates from command line
Office communicator command line
Windows at command examples
Javac not recognized as internal or external command
Search
E-mail Newsletter
E-mail
Subscribe
Download
starten
http://www.windows-commandline.com/rename-file-extensions-bulk/
4/6
2/21/2015
2009-2012 Windows-commandline.com The content is copyrighted and may not be reproduced on other websites.
Recent Posts
Internet explorer version updates
Run command for Control panel
Forfiles
Move files and directories to another location
Windows 8 essential commands
Take ownership of file or folder
Find files based on modified time
Javac not recognized as internal or external command
Set path from command line
Search classes in jar file
Find memory size
How to Enable or Disable guest account
Rename file extensions in bulk, including files in subfolders
How to kill process on remote computer?
How to start/stop webclient service
Create event from command line
Sleep command in Windows 7
How to change drive label
Windows 7 Run commands
Format Drive command
Categories
Batch Files (6)
Files (19)
Office Applications (2)
Remote access (4)
System Configuration (11)
System information (9)
Uncategorized (139)
User Accounts (18)
User Settings (2)
Widnows shortcuts (1)
Windows 8 (1)
Windows Commands (28)
WMIC (1)
Recent Comments
needy on Javac not recognized as internal or external command
Bob UK on Xcopy command : syntax and examples
Bob UK on Xcopy command : syntax and examples
http://www.windows-commandline.com/rename-file-extensions-bulk/
5/6
2/21/2015
Abdul on Net user command : Manage user accounts from command line
admin on Add user to group from command line (CMD)
http://www.windows-commandline.com/rename-file-extensions-bulk/
6/6