-
-
Save gyoza/6b93302c34e0670ff023dec27b0aa98f to your computer and use it in GitHub Desktop.
touch
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
def touch(path): | |
with open(path, 'a'): | |
os.utime(path, None) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment