|
@@ -2,6 +2,8 @@ import os
|
|
|
from datetime import datetime
|
|
|
from pathlib import Path
|
|
|
|
|
|
+blacklist = ["_\\", "_ori", "_.csv", "Kopie", "copy", "_sich"]
|
|
|
+
|
|
|
|
|
|
def move(system_dir: str):
|
|
|
max_age_ts = datetime.now().timestamp() - 24 * 60 * 60
|
|
@@ -16,7 +18,8 @@ def move(system_dir: str):
|
|
|
continue
|
|
|
|
|
|
full_file = str(source)
|
|
|
- if "_\\" in full_file or "_ori" in full_file or "_.csv" in full_file:
|
|
|
+ blacklisted = [pattern in full_file for pattern in blacklist]
|
|
|
+ if any(blacklisted):
|
|
|
continue
|
|
|
no_files = False
|
|
|
print("* " + str(source))
|