0

So I was looking into ways to do this like this post

How do I remove the same part of a file name for many files in Windows 7?

Because I wanted to change all the song files on my phone into mp3s. I used this program to do that to the 400 something songs. I wanted to remove some...

http://www.bulkrenameutility.co.uk/Main_Intro.php

I accidentally changed the file extension to ".mp3" and not "mp3" so now all my files are called "(insertsongtitle)..mp3" and not "(insertsongtitle).mp3". How could I remove this preferably with a batch file?

1 Answers1

0

From the directory with your files, go into Powershell at the command prompt (type powershell) and try something like this:

dir | Rename-Item -newname { $_.name -replace "..mp3", ".mp3" }

Source: http://www.howtogeek.com/111859/how-to-batch-rename-files-in-windows-4-ways-to-rename-multiple-files/

trpt4him
  • 1,640