|
@@ -1,11 +1,11 @@
|
|
|
import os
|
|
|
-from datetime import datetime
|
|
|
from pathlib import Path
|
|
|
|
|
|
import typer
|
|
|
|
|
|
import cognos7
|
|
|
import config
|
|
|
+from misc import file_move
|
|
|
|
|
|
app = typer.Typer()
|
|
|
cfg = config.Config()
|
|
@@ -30,61 +30,16 @@ def mdl_convert(mdl_file):
|
|
|
|
|
|
@app.command()
|
|
|
def move_csv():
|
|
|
- max_age_ts = datetime.now().timestamp() - 24 * 60 * 60
|
|
|
print("Verschiebe CSV-Dateien von IQD zu Export...")
|
|
|
- no_files = True
|
|
|
- for source in Path(f"{cfg.system_dir}\\IQD").rglob("*.csv"):
|
|
|
- full_file = str(source)
|
|
|
- if "_\\" in full_file or "_ori" in full_file or "_.csv" in full_file:
|
|
|
- continue
|
|
|
- no_files = False
|
|
|
- print("* " + str(source))
|
|
|
- dest = Path(f"{cfg.system_dir}\\Export\\{source.name}")
|
|
|
- source_size = source.stat().st_size
|
|
|
- source_ts = source.stat().st_mtime
|
|
|
- if source_size <= 20:
|
|
|
- print(f"!! Datei {source.name} ist leer !!")
|
|
|
- continue
|
|
|
- if source_ts < max_age_ts:
|
|
|
- print(f"!! Datei {source.name} ist aelter als 24 Stunden !!")
|
|
|
- continue
|
|
|
- if dest.exists():
|
|
|
- dest_size = dest.stat().st_size
|
|
|
- if source_size < dest_size // 10:
|
|
|
- print(f"!! Datei {source.name} ist zu klein !!")
|
|
|
- print(f"{source}: {source_size // 1024} KB")
|
|
|
- print(f"{dest}: {dest_size // 1024} KB")
|
|
|
- print("")
|
|
|
- continue
|
|
|
- dest_ts = dest.stat().st_mtime
|
|
|
- if source_ts < dest_ts:
|
|
|
- print(f"!! Datei {source.name} ist aelter als die Zieldatei !!")
|
|
|
- print(str(source) + ": " + datetime.fromtimestamp(source_ts).strftime("%d.%m.%Y, %H:%M:%S"))
|
|
|
- print(str(dest) + ": " + datetime.fromtimestamp(dest_ts).strftime("%d.%m.%Y, %H:%M:%S"))
|
|
|
- print("")
|
|
|
- continue
|
|
|
- dest.unlink()
|
|
|
- os.rename(source, dest)
|
|
|
- if no_files:
|
|
|
+ res = file_move.move(cfg.system_dir)
|
|
|
+
|
|
|
+ if res is False:
|
|
|
print("* Keine CSV-Dateien im IQD-Ordner gefunden.\n")
|
|
|
|
|
|
print("Pruefe Export-Ordner...")
|
|
|
- ignore_file = Path(f"{cfg.system_dir}\\Export\\ignoriert.txt")
|
|
|
- ignore_list = []
|
|
|
- if ignore_file.exists():
|
|
|
- ignore_list = ignore_file.read_text(encoding="latin-1").split("\n")
|
|
|
- clean_exit = True
|
|
|
+ is_clean = file_move.check(cfg.system_dir)
|
|
|
|
|
|
- for dest in Path(f"{cfg.system_dir}\\Export").glob("*.csv"):
|
|
|
- if dest.name in ignore_list:
|
|
|
- continue
|
|
|
- dest_ts = dest.stat().st_mtime
|
|
|
- if dest_ts < max_age_ts:
|
|
|
- print(f"!! Datei {dest.name} ist aelter als 24 Stunden !!")
|
|
|
- print(str(dest) + ": " + datetime.fromtimestamp(dest_ts).strftime("%d.%m.%Y, %H:%M:%S"))
|
|
|
- clean_exit = False
|
|
|
- continue
|
|
|
- if clean_exit:
|
|
|
+ if is_clean:
|
|
|
print("* Alle Dateien aktuell.\n")
|
|
|
|
|
|
|