This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| # A simple python script to move screenshots in the screenshots folder into subfolders based on their datetime. | |
| # Usage: | |
| # - Edit the SCREENSHOTS_DIR to be wherever your screenshots folder is | |
| # - Schedule this script to run at a regular interval, for example on windows using Task Scheduler | |
| # (ideally immediately after a login so that the root folder never updates while you're looking at it) | |
| import datetime | |
| import os | |
| import re |
OlderNewer