python实现截取屏幕保存文件,删除N天前截图的例子
更新时间:2019年08月27日 16:11:03 作者:woobol
今天小编就为大家分享一篇python实现截取屏幕保存文件,删除N天前截图的例子,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
我就废话不多说,直接上代码吧!
from PIL import ImageGrab
import time
import schedule
import os
import shutil
import datetime
days = -3
# 截屏
def savepic():
im = ImageGrab.grab()
now = time.strftime("%Y_%m_%d_%H_%M_%S", time.localtime())
day = time.strftime("%Y%m%d", time.localtime())
file_path_top = 'c:\\tmp\\'
if not os.path.exists(file_path_top):
os.mkdir(file_path_top)
file_path = 'c:\\tmp\\'+day+'\\'
if not os.path.exists(file_path):
os.mkdir(file_path)
im.save(file_path+now+'.jpg')
# 删除文件
def deletefile():
today = datetime.datetime.now()
offset = datetime.timedelta(days=days)
re_date = today + offset
file_dir = r'C:\tmp'
for root, dirs, files in os.walk(file_dir):
for i in dirs:
if(i<=re_date.strftime('%Y%m%d')):
path = 'C:\\tmp\\'+i
if (os.path.exists(path)):
shutil.rmtree(path)
schedule.every(60).seconds.do(savepic)
schedule.every().day.at("00:30").do(deletefile)
while True:
schedule.run_pending()
time.sleep(1)
以上这篇python实现截取屏幕保存文件,删除N天前截图的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
详解Python中@staticmethod和@classmethod区别及使用示例代码
这篇文章主要介绍了详解Python中@staticmethod和@classmethod区别及使用示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-12-12
对python中的six.moves模块的下载函数urlretrieve详解
今天小编就为大家分享一篇对python中的six.moves模块的下载函数urlretrieve详解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2018-12-12
python爬虫scrapy基于CrawlSpider类的全站数据爬取示例解析
这篇文章主要介绍了python爬虫scrapy基于CrawlSpider类的全站数据爬取示例解析,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2021-02-02


最新评论