-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommands.py
172 lines (128 loc) · 5.75 KB
/
Commands.py
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import glob
import os
import shutil
import main
import convert_sizes
# we can do a super class at the end
class Command:
def __init__(self):
self._finishStatus = True
self._outputReport = ""
def get_finishStatus(self):
return self._finishStatus
def get_outputReport(self):
return self._outputReport
class GrepCommand(Command):
"""This class automates the Grep <file> <directory> command"""
def __init__(self, file, path):
super(GrepCommand, self).__init__()
self.__set_path(path)
self.__file = file
def get_path(self):
return self.__path
def __set_path(self, path):
if os.path.exists(path):
self.__path = path
else:
self._finishStatus = False
self._outputReport += "Fail: Could not find directory\n"
def get_file(self):
return self.__file
def execute(self):
if self.get_finishStatus():
text_files = glob.glob(self.__path + "/**/" + self.__file, recursive=True)
self._finishStatus = True
if len(text_files) != 0:
self._outputReport += "File was successfully found: "+ str(text_files) +"\n"
else:
self._finishStatus = True
self._outputReport += "Could not find the file in the directory or its subdirectories \n"
class Mv_lastCommand(Command):
"""This class automates the Mv_last <src_directory> <des_directory>"""
def __init__(self, source, destination):
super(Mv_lastCommand, self).__init__()
self.__set_source(source)
self.__set_destination(destination)
def __set_source(self, source):
if os.path.exists(source) and os.path.isdir(source):
self.__source = source
else:
self._finishStatus = False
self._outputReport += "Fail: Could not find source directory\n"
def __set_destination(self, destination):
if os.path.exists(destination) and os.path.isdir(destination):
self.__destination = destination
else:
self._finishStatus = False
self._outputReport += "Fail: Could not find destination directory\n"
def get_source(self):
return self.__source
def get_destination(self):
return self.__destination
def execute(self):
if self.get_finishStatus():
time_of_files = []
for fname in os.listdir(self.get_source()):
path = os.path.join(self.get_source(), fname)
if os.path.isdir(path):
continue
else:
time = os.path.getctime(os.path.join(self.get_source(), fname))
time_of_files.append(os.path.join(self.get_source(), fname))
if len(time_of_files) != 0:
time_of_files.sort(key=os.path.getctime, reverse=True)
mostRecentFile = time_of_files[0]
try:
self._outputReport += "Moving "+mostRecentFile+" to"+ self.get_destination()
shutil.move(mostRecentFile, self.get_destination())
except:
self._finishStatus=False
self._outputReport +="File already exists\n"
return
self._finishStatus = True
self._outputReport += "Successfully moved the most recent file\n"
else:
self._outputReport += "No files were found in source directory\n"
class CategorizeCommand(Command):
countDirectory = 0
def __init__(self, path):
super(CategorizeCommand, self).__init__()
self.__set_path(path)
def __set_path(self, path):
if os.path.exists(path):
self.__path = path
else:
self._finishStatus = False
self._outputReport += "Fail: Could not find directory\n"
def get_path(self):
return self.__path
def execute(self):
if self.get_finishStatus():
CategorizeCommand.countDirectory += 1
lessPath = os.path.join(self.get_path(), "lessThanThreshold_"+str(CategorizeCommand.countDirectory))
# When we rerun the script multiple types, this will handle the duplicate names
while os.path.exists(lessPath):
CategorizeCommand.countDirectory += 1
lessPath = os.path.join(self.get_path(), "lessThanThreshold_" + str(CategorizeCommand.countDirectory))
try:
os.mkdir(lessPath)
self._outputReport+=" %s directory created\n" %lessPath
morePath = os.path.join(self.get_path(), "GreaterThanThreshold_" + str(CategorizeCommand.countDirectory))
os.mkdir(morePath)
self._outputReport += " %s directory created\n" % morePath
for fname in os.listdir(self.get_path()):
path = os.path.join(self.get_path(), fname)
if os.path.isdir(path):
continue
else:
if os.stat((os.path.join(self.get_path(),fname))).st_size < convert_sizes.convert(main.configurations[" Threshold_size "]):
shutil.move((os.path.join(self.get_path(), fname)), lessPath)
self._outputReport += " Moved " + fname + " to " + lessPath+"\n"
else:
shutil.move((os.path.join(self.get_path(),fname)), morePath)
self._outputReport += " Moved " + fname + " to " + morePath+"\n"
except OSError:
self._outputReport += "Creation of directory failed\n"
self._finishStatus = False
else:
self._outputReport += "Command failed\n"