-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathController.py
More file actions
120 lines (96 loc) · 2.38 KB
/
Controller.py
File metadata and controls
120 lines (96 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
"""
Author: masakokh
Version: 1.0.0
Note: Controller
"""
# built-in
import glob
import os
import pathlib
from datetime import datetime
class Controller:
"""
"""
def __init__(self):
"""
"""
# private
self.__path = ''
def __setPath(self, path: str) -> None:
"""
:param path:
:return:
"""
#
if path and os.path.exists(path):
self.__path = path
#
self.__path = os.path.join(self.__path, '')
def cleanupByDate(self, num: int, path: str= '') -> None:
"""
:param num:
:param path:
:return:
"""
#
self.__setPath(path)
# get file list by pattern via glob function
fileList = glob.glob(f'{self.__path}')
# iterate over the list of filepath and remove each file
for fileItem in fileList:
# remove one by one
try:
os.remove(fileItem)
except OSError as e:
print(f'Controller.cleanupByDate {str(e)}')
except Exception as e:
print(f'Controller.cleanupByDate {str(e)}')
def deleteByDate(self, startDate: str, endDate: str, path: str= '') -> None:
"""
:param startDate:
:param endDate:
:param path:
:return:
"""
#
self.__setPath(path= path)
# get file list by pattern via glob function
fileList = os.listdir(self.__path)
dStart = datetime.strptime(startDate, '%Y-%m-%d')
dEnd = datetime.strptime(endDate, '%Y-%m-%d')
# iterate over the list of filepath and remove each file
for fileItem in fileList:
# remove one by one
try:
#
if os.path.isfile(fileItem):
#
timestampFile = pathlib.Path(fileItem)
#
if datetime.timestamp(dStart) <= timestampFile.stat().st_mtime <= datetime.timestamp(dEnd):
os.remove(fileItem)
except OSError as e:
print(f'Controller.deleteByPattern {str(e)}')
except Exception as e:
print(f'Controller.deleteByPattern {str(e)}')
def deleteByPattern(self, pattern: str, path: str= '') -> None:
"""
:param pattern: *abac*.txt, *.log, *.*
:param path:
:return:
"""
#
self.__setPath(path)
# get file list by pattern via glob function
fileList = glob.glob(f'{self.__path}{pattern}')
# iterate over the list of filepath and remove each file
for fileItem in fileList:
# remove one by one
try:
#
if os.path.isfile(fileItem):
os.remove(fileItem)
except OSError as e:
print(f'Controller.deleteByPattern {str(e)}')
except Exception as e:
print(f'Controller.deleteByPattern {str(e)}')