Renaming A Bunch Of Files At The Same Time
Scarica e ascolta ovunque
Scarica i tuoi episodi preferiti e goditi l'ascolto, ovunque tu sia! Iscriviti o accedi ora per ascoltare offline.
Descrizione
I had to strip off the first part of a bunch of file names. You can do this inside of Windows Powershell, using this simple script: get-childitem *.dat | rename-item...
mostra di piùget-childitem *.dat | rename-item -newname { [string]($._name).substring(9) }
The file extension and the numeric value are variable based on your needs.
WARNING: THIS WILL AFFECT EVERY FILE IN YOUR CHOSEN DIRECTORY, so move all the files that you need to rename to their own folder. And, it can't be redone, so make a backup beforehand, and make sure you're in the correct folder before you execute.
Informazioni
Autore | Kyle Souza |
Organizzazione | Kyle Souza |
Sito | - |
Tag |
Copyright 2024 - Spreaker Inc. an iHeartMedia Company
Commenti