Skip to content

Instantly share code, notes, and snippets.

@uitspitss
Created March 12, 2017 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uitspitss/a365c344a48fb653327101c8d9894103 to your computer and use it in GitHub Desktop.
Save uitspitss/a365c344a48fb653327101c8d9894103 to your computer and use it in GitHub Desktop.
#!python
#-*-coding:utf-8-*-
import time
import shutil
def main():
while True:
shutil.copy('image.jpg', time.strftime('%Y%m%d-%H%M%S.jpg'))
print("cp:", time.strftime('%Y%m%d-%H%M%S.jpg'))
time.sleep(10)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment