Skip to content

Instantly share code, notes, and snippets.

@pcote
Created March 17, 2017 16:11
Show Gist options
  • Save pcote/14f14ed29554e5375bfeb4dcd793c96d to your computer and use it in GitHub Desktop.
Save pcote/14f14ed29554e5375bfeb4dcd793c96d to your computer and use it in GitHub Desktop.
def modify_time_sort(file_name):
file_path = "uploads/{}".format(file_name)
file_stats = os.stat(file_path)
last_access_time = file_stats.st_atime
return last_access_time
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment