Quantcast
Channel: How to rename 80.000 files at once in Windows - Super User
Viewing all articles
Browse latest Browse all 10

Answer by Siim K for How to rename 80.000 files at once in Windows

$
0
0

Here's a way using PowerShell:

Navigate to your folder and run this command

Get-ChildItem *.jpg | Rename-Item -newname {"._"+ $_.Name}

Extra bonus short version:

gci *.jpg | ren -newname {"._"+ $_.Name}

Viewing all articles
Browse latest Browse all 10

Trending Articles