Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save eugrus/0fbf45d73d856d9d04eebc4b3bd3d437 to your computer and use it in GitHub Desktop.
Save eugrus/0fbf45d73d856d9d04eebc4b3bd3d437 to your computer and use it in GitHub Desktop.
rename files according to date and time of their last edit in PowerShell
Get-ChildItem *.png | Rename-Item -newname {$_.LastWriteTime.toString("yyyy-MM-dd-HH-mm-ss") + ".png"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment