Updated cdx file retention to 2 days
This commit is contained in:
parent
4d4dc9c81c
commit
8e1912cb9b
@ -179,12 +179,12 @@ def main():
|
||||
directory_output_file.write(f"{filename}\n")
|
||||
|
||||
# Process older files in /opt/cdxfiles/mediafire
|
||||
older_than_24_hours = datetime.now() - timedelta(days=1)
|
||||
older_than_48_hours = datetime.now() - timedelta(days=2)
|
||||
for filename in os.listdir(MEDIAFIRE_DIRECTORY):
|
||||
file_path = os.path.join(MEDIAFIRE_DIRECTORY, filename)
|
||||
if filename.endswith(".cdx.json") and os.path.getmtime(file_path) < older_than_24_hours.timestamp():
|
||||
if filename.endswith(".cdx.json") and os.path.getmtime(file_path) < older_than_48_hours.timestamp():
|
||||
os.remove(file_path)
|
||||
print(f"Deleted '{filename}' as it is older than 24 hours.")
|
||||
print(f"Deleted '{filename}' as it is older than 48 hours.")
|
||||
|
||||
run_ia_command() # Run IA command after processing older files
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user