2019-08-13

remove IMG_ from files / rename file from command prompt or PowerShell

Open command prompt and enter:

ren "img_*.jpg" "////*.jpg"

Open PowerShell and run:

get-childitem *.jpg | foreach { rename-item $_ $_.Name.Replace("IMG_", "") }

No comments:

Post a Comment