-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdelete-old-files.py
executable file
·35 lines (30 loc) · 1.05 KB
/
delete-old-files.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
#!/usr/bin/python3
import os
import sys
import os.path
import argparse
import datetime
def parse_args():
parser = argparse.ArgumentParser(description="Delete old files.")
parser.add_argument('-v', '--verbose', dest="verbosity", \
action="store_true", help="Increase output verbosity.")
parser.add_argument('-d', '--directory', dest="workdir", \
help="Specify the directory to search for old files.")
args = parser.parse_args()
return args
def main():
args = parse_args()
now = datetime.datetime.now()
for (dirpath, dirnames, filenames) in os.walk(args.workdir):
for f in filenames:
fqfile = os.path.join(dirpath, f)
# get dires too
#if os.path.isfile(fqfile):
datediff = (float(now.strftime('%s')) - os.path.getmtime(fqfile)) / 86400
if args.verbosity:
print("Got mtime ({0}); now ({1}); diff ({2})".format(os.path.getmtime(fqfile), now.strftime('%s'), datediff))
if datediff >= 90:
print("{0}, {1:.2f}, {2:.2f}".format(fqfile, os.path.getmtime(fqfile), datediff))
os.remove(fqfile)
if __name__ == '__main__':
main()