This post talks about how to batch rename file extensions from command line. No 3rd party tools are required. At the end of the post, you can find a download link for the batch file script.
Batch rename file extensions in bulk from CMD
We can change the extension of files in batch using rename command. For example, let’s say you have set of files with extension .log and you want to rename them to .txt. You can do this with the below command
rename *.log *.txt
The drawback with this command is, we can’t use it to rename file extensions recursively in the sub folders. Next, we’ll look at a solution which allows us to do so.
Recursively batch rename file extensions
If you want to rename files from one extension to another, recursively in all sub folders, then you can use the below command.
forfiles /S /M *.ext1 /C "cmd /c rename @file @fname.ext2"
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"
Remove file extensions in batch
The below command would remove extension for the specified file types.
forfiles /S /M *.ext /C "cmd /c rename @file @fname"
If you want a batch file script, it can be downloaded from the below link:
Batch file script for renaming file extensions in bulk
Add prefix to file names in batch
If you want to add any prefix to file names, it can be done as in the below example. Here we try to add ‘photo’ to every jpg file in the current folder and subfolders.
forfiles /S /M *.jpg /C "cmd /c rename @file photo@file"
Similarly, we can add a number to a file name.
forfiles /S /M *.jpg /C "cmd /c rename @file 99@file"
Handling names with white spaces
If the new name you want to assign to the files has white space within it, it can be done by adding double quotes around the file name. So that forfiles does not misinterpret this doublequotes, you need to escape them with ‘\’
For example to add ” – pic.jpg” to each of the jpg files, the command would be as below.
forfiles /M *.jpg /C "cmd /c rename @file \"@fname - pic.jpg\""
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.
This should do
Figured it by out myself.
forfiles /S /M *-common.xml /C “cmd ren *-common.xml *-common.xml.txt”
If you are using forfiles, you donot need to use * again in the cmd part.
Thanks for these hints :-) Is it also possible to include a space in the prefix? I tried the following:
=> The syntax of the command is incorrect
=> ERROR: Invalid argument/option…
The file name need to be surrounded with double quotes if it has white spaces. Added example command to the post.
I have here some files with ending like this
(1).txt
e.g. file_a(1).txt
I tried this
forfiles /S /M *.ext1 /C "cmd /c rename @file @fname.ext2"
for renaming them to .txte.g. file_a.txt
Can you help me?
The “Add prefix to file names” code is faulty. When I ran it, it keeps adding the prefix to all of the files in the folder over and over again until I kill it.
It worked fine for me. Can you tell me how many files you have in the folder that you were intending to add the prefix?
Same issue here. I believe it happens when there are special characters in the file name (i have brakets “[]” and commas “,”.
I just tried to rename midi karaoke files to midi files,
This doesn’t work if the file name has spaces in it, (OS Win XP Sp3).
But I found other solution that works flawlessly
Thanx a million times man! you saved me
None of the websites including this has alluded to the renaming of files by removal a second extension.
If a folder contains several files like *.mo.po and *.mo as file extensions, how do we selectively rename the *.mo.po to *.po whilst not touching the *.mo that were already there?
Try this command
It works only if you don’t 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.
A virus added .zwrkocj to all file types, how would I remove that?
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.
How to append the name of the parent folder onto the prefix of the file name?
forfiles /S /M *.ext /C “cmd /c rename @file @fname”
changed files in all of C drive, right?
how can you specify a specific folder and its subfolders?
how can you turn off recursion?
We can’t restrict the recursion to one level. You might need to write a custom batch script to do that.
You have to run the command in the folder you wish to treat as the root. If you run the command from C:\, then yes, it will rename all files matching the filename criteria you specify.
Hi
I have one question.
I created a bat file for renaming all the files to one extension
but this also changes the extension of my bat file.
Can I exclude bat file in any way.
Thanks for your help on this.
Why not place this bat file in some other folder, outside the current directory tree?
Great stuff guys. This probably saved me about an hours worth of work.
I can’t seem to get the white spaces code to work.
forfiles /s /m *.* /C “cmd /c rename @file \”(PA) @file\””
Your Example:
Is there anything that is wrong with the above code. This is the following error “Unrecognized token in source text.”
It worked for me.
I guess something could be wrong if you had copy pasted the command. Especially the double quotes usually get wrong. I would suggest to type the command(rather than copy/paste), it should work.
Would the error be caused by running the commands simply from a PS1 Script? That’s the only reason I can think of.
Well I ended up Scripting a simply tool in Access VBA.
‘forfiles’ command seems to have come very close to serving my need but is there a way to remove a prefix from a set of files recursively?
Example:
TT-*.* to *.*
I want to remove ‘TT-‘ from all the files
Hello,
Any idea’s on how to rename hidden files?
When I run the command it can’t find the files because they have the hidden attribute.
I don’t see a /H or similar switch in the command help.
Any help would be appreciated.
Thank you.
You can remove the hidden attribute first with ‘attrib -h’ and then rename the file.
Hi,
i want to add one set of numbers to file names and have multiple folders containing few files in every forlder
like folder 1003 has 3 files with names like : 1003_blue_M , 1003_Black_M, 1003_Red_S, etc… now i want to change the file name to 1003_blue_M_12345, 1003_Black_M_12345, like wise…. every folder will have new number to be added..kindly suggest how i can replace the entire bulk of files ->in folders
Thanks
Niyaz
I do not understand the example for changing file extension of particular file and where to apply this command. pl. clarify
as Will said:
“The “Add prefix to file names” code is faulty. When I ran it, it keeps adding the prefix to all of the files in the folder over and over again until I kill it.”
It keeps adding the prefix till you kill it.
is there a stop or pause code ?
I am not able to replicate this. It is stopping after renaming all the files.
May be you guys have a different setup in your cases.
Hi,
How to remove double quotation using forfiles to save as text file. Please see below my code.
the result was this : “FO_FullDBBackup_201509211126”, 9/21/2015, 11:26:50 AM, 20001
i want to look like this : FO_FullDBBackup_201509211126, 9/21/2015, 11:26:50 AM, 20001
than you,
hi, I wanted to know how to rename files so that if it detects the same name it will change the name to add a number to it for example:
ren *.* *.jpg
so if it has 1.thm 1.thumb it will rename the first file 1.thm and then when it tries to rename 1.thumb to jpg it says that its duplicate. so I need it to rename something like 1-1.jpg or 1a.jpg, 1b.jpg, etc.
thanks in advance.
Hi I tried to append the prefix XTO_12345678W500_ to about 200 pictures
the command will repeat the addition (XTO_12345678W500_) until the file name is 256 almost characters! Then crashes.
I tried to add only 12345678W500_ and it works fine.
To this tried to add the remaining XTO_ and it did it again: fill the name to about 256 (did not count!) characters!!!! and then crashes!
Hello
I want to change an extension from .exe to .pdf or .jpg without changing the proprietes of .exe
Can somebody help me with this?
Thank you
forfiles /s /M *.txt /C “cmd /c rename @file filename_@file”
when i am using the above command for more then 40 files in the folder it gives an error with the repetition of filename with .ext ?
any solution guys with some minor changes in the above code so i can rename the 100s of filename without repeating it.
Hi
I want to remove prefixes from file names. I have successfully used the following to rename files in a directory, but it does not work for subdirectories
rename “01 – *.mp3” “/////*.mp3”
I tried
forfiles /S /M 0*.mp3 /C “cmd /c rename @file \”//@fname.mp3\””
however it gives me an error that
ERROR: Files of type “0*.mp3” not found.
however dir 0*.mp3 /s works fine, so there are files matching the criteria
Variations to enclose the search in “” also give the same error. I tried
forfiles /S /M “0*.mp3” /C “cmd /c rename @file \”//@fname.mp3\””
I have a script that renames files and adds a time stamp for the current time. the script works great however it will only execute on one file in a folder each time it runs. I need it to run on all file in a folder each time. What am i Missing?
@echo off
for %%f in (*.*) do echo %%f
for /f “delims=” %%a in (‘wmic OS Get localdatetime ^| find “.”‘) do set dt=%%a
set YYYY=%dt:~0,4%
set MM=%dt:~4,2%
set DD=%dt:~6,2%
set HH=%dt:~8,2%
set Min=%dt:~10,2%
set Sec=%dt:~12,2%
set stamp=D%YYYY%%MM%%DD%T%HH%%Min%%Sec%
Hi,
I want to use the rename command for changing the extension of files in a folder to “*.gz.par”.
For eg the files in the folder are:
abc.par
xyz.gz.par
I need to rename the abc.par to abc.gz.par and xyz.gz.par should stay the same.
Now when I run the command: rename *.par *.gz.par
it changes the abc.par correctly to abc.gz.par
but it also changes xyz.gz.par to xyz.gz.gz.par
Please help…
Hi,
every morning at work i start my day by serching a file received the night before on folder1 and having name like RetxxxxxxxDDYY (the DDYY is the date of the last working day when the file has been created).
Is there a way to copy the last file received from the folder1 to folder2 using a script knowing that the files created avery day still on this folder.
Many thanx in advence
How do I change files’ type in D drive?
Kryptik virus or trojan changed the file names from original file names to include .crypted – I used the remove file extensions in batch command copied the original line into notepad modified it to be
forfiles /S /M *.crypted /C “cmd /c rename @file @fname”
then pasted it from notepad into the cmd window
And voila all the files that had been changed got changed back to the original filenames. Thank you for this resource.
Thank you thank you.
A virus added .crypted to all file types, how would I remove that? like .doc.crypted , .ppt.crypted, jprg.cypted
i have done ren*.* *. but i was for one directory, i want forfolder and sub folder or hole directory in one batch file
Thank you Masim!
Your command line really works, helped me remove all “.cryped”
I have a list of files in a single directory and want to bulk change the names of all the files so that the files retain their original filename + unique datetimestamp for example all of the current files have a yymmdd.cfx name and 2 have a yymmdd.cfx_2 extension I need to change all of these or at least the .cfx files to have current file name + yyyymmddhhmmss getting current timestamp that’s unique.. I can’t get your example to work and it’s driving me crazy.. thanks
I have a client that received an email from “FedEx” about a delay in shipment. We had just ordered memory the day before so they opened it. It popped up a ransomware msg and encrypted several .docx files and changed their extensions to .docx.crypted. I opened one of the files and it is encrypted. They have TrendMicro loaded and it totally ignored the problem. I scanned with Windows Security Essentials and it found “Ransom:HTML/tescrypt.D”. Only two PC’s received this email and encrypted files. Subsequent scans on server and 11 other PC’s found no problems. Will try some of the “unencrypting” ideas above. Luckily, their aren’t two many files. Appears to be only on files on desktop. Thanks for all the ideas and beware of the FedEx emails.
I want remove to 6 random chrachter extension.
Forexample
We have 2 f’iles
as
1.jpg and 1.jpg.hgkbgt
I want to delete secondary file at the same folder.
1.jpg file will be stay in same folder
How I could that
Some how The dot between the body and the extension of all the songs has been removed. Is there a way to put the dot back other than one at a time? This happen to one complete music folder.
Below is an example
Judith Durham, Danny Boymp3 (NOTE NO PERIOD AFTER BOY)
I want to rename files in sub-folders as name which is in that sub-folder name via batch file. Can u help me?
Thankyou very much, this worked for me!
Hi,
I want change the extension of files in subfolders.most important is I don’t know the file name and folder name.both are dynamic..How should I do?? Can you help me?
Thanks in advance.
I need to batch or mass rename 76k+ file names in multiple folders and subfolders in a directory. I need the new name to be a specific unique name.
I cannot use a third party application; I can only use command prompt or powershell or whatever comes with Windows 2010. I also can use the standard version of the app Beyond Compare.
For example, I need to change:
C:\Users\joe\Desktop\Parentfolder\child folder\grandchildfolder##NA##1329001.00##1329001.00\file1.pdf
to:
C:\Users\joe\Desktop\Parentfolder\child folder\grandchildfolder##NA##1329001.00##1329001.00\company xyz.pdf
Parent folder is the lowest common folder in the shared hierarchy of all files i need to change
I have the full path containing the old name in an excel column matched to the full path containing the new name in the adjacent excel column. The new name in cell AB must be the name that replaces the old name in cell A2. There is not a pattern to the names and they do contain spaces and non alpha-numeric characters.
I have tried using “ren” by and adding ren “old path with old name” “new path with old name” but cannot get it to work. The closest I have come is renaming files in folders from command prompt at the lowest folder location & can only rename the files in that folder only
I did this by pasting the ren command with the old and new name from spreadsheet to wordpad & then saving it as a .bat
I badly needed this to rename my iPhone’s video extensions to play in Adobe Premiere pro.
Thanks a lot.
forfiles /S /M *.jpg /C “cmd /c rename @file photo@file”
this command infinatly rename image name, i mean it infinatly add photo prifix, i want to add photo prifix only once
Thank you. It worked like a charm.
I wrote the following to rename all files to .mp4
How do I get the script to all run on all sub-folders?
Thank you!
@echo off
ren * *.mp4
Hi how do you rename folders in other drives/folders?
How to rename files in folders to foldername using batch file?
i have multiple folder with date mentioned on it and inside of that .xls file i want to remain it to parent foldername.xls
is there any solution for that?
Hello! Thank you for your tutorial!
How can I change the file names only in the subdirectories and to shorten the file name to first 4 digit of original file name? Thankssss!
Could someone help how to rename the files of type ‘File’ using
forfiles /S /M *.* /C “cmd /c rename @file @fname.txt”
What goes in place of *.* in the above command?
forefiles seems not to support unc paths.
C:\Users\sdr\Desktop\get-iplayer>forfiles /P \\192.168.1.124\reddit\ /S /M * /C “cmd /c if @fsize LEQ 30730 @path”
ERROR: UNC paths (\\machine\share) are not supported.