Created
February 3, 2022 17:54
-
-
Save Sean12mps/b04ec3091c4665746519366bdb383c8c to your computer and use it in GitHub Desktop.
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
| #Rename multiple files | |
| --------------------- | |
| $i = 1; | |
| $name = 'foobar'; | |
| $ext = 'jpg'; | |
| foreach ( $file in gci ) { | |
| Rename-Item $file ( "$name-$i.$ext" ); | |
| $i++; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Rename multiple files in Windows using PowerShell.