Skip to content

Instantly share code, notes, and snippets.

@madprops
Created September 13, 2021 18:52
Show Gist options
  • Save madprops/7b9b51ce7c9bd0f16aaf80b5e71779f9 to your computer and use it in GitHub Desktop.
Save madprops/7b9b51ce7c9bd0f16aaf80b5e71779f9 to your computer and use it in GitHub Desktop.
Update the modification date of files in a directory in sorted order
#!/usr/bin/python3
import pathlib
for p in sorted(pathlib.Path('.').iterdir()):
if p.is_file():
print(p)
p.touch()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment