Skip to content

Instantly share code, notes, and snippets.

@sambatlim
Created July 23, 2021 01:41
Show Gist options
  • Save sambatlim/6acdd449522878fa05ae7d7bfa5adc04 to your computer and use it in GitHub Desktop.
Save sambatlim/6acdd449522878fa05ae7d7bfa5adc04 to your computer and use it in GitHub Desktop.
powershell script to rename multiplle file in folder sort by last write date or time
dir | Sort-Object LastWriteTime | %{Rename-Item $_ -NewName ("photo-{0}.png" -f $nr++)}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment