12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- from hub import Global, methods
- 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天之前的日志
- """
-
- log_file_dir = f"/home/server/logs"
- file_path_list = methods.get_file_path_list(log_file_dir)
- file_name_list = [i.split('/')[-1] for i in file_path_list]
-
-
- for file_name in file_name_list[30:]:
- file_path = f"/home/server/logs/{file_name}"
- if methods.is_file(file_path):
- methods.remove_file(file_path)
|