-
-
Save KustomDeveloper/42072f30e3cd6dff66eef27289a3a54a to your computer and use it in GitHub Desktop.
Windows Powershell | Change multiple filenames in Folder
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
Open a Command Prompt. | |
Go to the folder with the cd command (eg.: cd "path of your folder"). | |
Open a powershell by typing: powershell | |
Then input this: get-childitem *.mp3 | foreach {rename-item $_ $_.name.replace(" ","")} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment