gc-server3 2 місяців тому
батько
коміт
0a8e501ac8
1 змінених файлів з 4 додано та 1 видалено
  1. 4 1
      misc/file_move.py

+ 4 - 1
misc/file_move.py

@@ -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))