Skip to content

Instantly share code, notes, and snippets.

@KustomDeveloper
Last active February 6, 2023 15:53
Show Gist options
  • Save KustomDeveloper/42072f30e3cd6dff66eef27289a3a54a to your computer and use it in GitHub Desktop.
Save KustomDeveloper/42072f30e3cd6dff66eef27289a3a54a to your computer and use it in GitHub Desktop.
Windows Powershell | Change multiple filenames in Folder
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