Last active
September 9, 2021 11:54
-
-
Save sharjeel619/98f5b2cff5eef14fd39cbd399b8df6b2 to your computer and use it in GitHub Desktop.
Powershell command for windows 10 to rename multiple mp3(can be any type of file, just replace the .mp3 extension name) files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get-childitem *.mp3 | foreach { rename-item $_ $_.Name.Replace("string to be replaced", "string to replace") } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment