Guest User

Untitled

a guest
Jan 18th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. from time import sleep, time
  2. from os import stat
  3.  
  4. filename = 'image.jpeg'
  5.  
  6. last = None
  7. while True:
  8. s = stat(filename)
  9. if last and last != s:
  10. print(time(), s)
  11. last = s
  12. sleep(0.01)
Add Comment
Please, Sign In to add comment