Added --cleanup arg

This commit is contained in:
Profitroll 2022-08-09 11:45:52 +02:00
parent 8039685e6b
commit 9cac021854
1 changed files with 14 additions and 11 deletions

25
main.py
View File

@ -23,18 +23,21 @@ if "--move-sent" in sys.argv:
logWrite(f"Could not move sent file '{entry}' to '{configGet('sent', 'locations')}' due to {exp}")
if "--cleanup" in sys.argv:
for entry in jsonLoad(configGet("index", "locations"))["sent"]:
try:
if "--confirm" in sys.argv:
for entry in jsonLoad(configGet("index", "locations"))["sent"]:
try:
os.remove(configGet("queue", "locations")+os.sep+entry)
except FileNotFoundError:
pass
try:
os.remove(configGet("sent", "locations")+os.sep+entry)
except FileNotFoundError:
pass
except Exception as exp:
logWrite(f"Could not remove '{entry}' due to {exp}")
try:
os.remove(configGet("queue", "locations")+os.sep+entry)
except FileNotFoundError:
pass
try:
os.remove(configGet("sent", "locations")+os.sep+entry)
except FileNotFoundError:
pass
except Exception as exp:
logWrite(f"Could not remove '{entry}' due to {exp}")
else:
logWrite(f"Requested cleanup of sent files but not authorized. Please pass '--confirm' to perform that")
if "--norun" in sys.argv:
logWrite("Argument --norun passed, not running the main script")