1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- from hub import Global, methods
- import os
- save_dir = r'C:\temp'
- class JobManage(object):
- """"""
-
-
-
- @classmethod
- def run(cls):
- """启动全部任务"""
-
-
-
-
-
-
- Global.aps.create_job(func=cls.job101, trigger='cron', hour=22)
-
-
- @classmethod
- def end(cls):
- """暂停全部任务"""
- Global.aps.pause_all()
- @staticmethod
- def job101():
- """
- 每日22点清理30天之前的日志
- todo 根据UserWorkRecordList.start_at来判断过去7天的数据
- """
-
- file_path_list = methods.get_file_path_list(save_dir)
- file_name_list = [i.split('/')[-1] for i in file_path_list]
-
-
-
-
-
-
-
-
- remove_count = 30 * 24
- for file_name in file_name_list[remove_count:]:
- file_path = os.path.join(save_dir, file_name)
- if methods.is_file(file_path):
- methods.remove_file(file_path)
|