file_move.py 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. import os
  2. from datetime import datetime
  3. from pathlib import Path
  4. def move(system_dir: str):
  5. max_age_ts = datetime.now().timestamp() - 24 * 60 * 60
  6. ignore_file = Path(f"{system_dir}\\IQD\\ignoriert.txt")
  7. ignore_list = []
  8. if ignore_file.exists():
  9. ignore_list = ignore_file.read_text(encoding="latin-1").split("\n")
  10. no_files = True
  11. for source in Path(f"{system_dir}\\IQD").rglob("*.csv"):
  12. if source.name in ignore_list:
  13. continue
  14. full_file = str(source)
  15. if "_\\" in full_file or "_ori" in full_file or "_.csv" in full_file:
  16. continue
  17. no_files = False
  18. print("* " + str(source))
  19. dest = Path(f"{system_dir}\\Export\\{source.name}")
  20. source_size = source.stat().st_size
  21. source_ts = source.stat().st_mtime
  22. if source_size <= 20:
  23. print(f"!! Datei {source.name} ist leer !!")
  24. continue
  25. if source_ts < max_age_ts:
  26. print(f"!! Datei {source.name} ist aelter als 24 Stunden !!")
  27. continue
  28. if dest.exists():
  29. dest_size = dest.stat().st_size
  30. if source_size < dest_size // 10:
  31. print(f"!! Datei {source.name} ist zu klein !!")
  32. print(f"{source}: {source_size // 1024} KB")
  33. print(f"{dest}: {dest_size // 1024} KB")
  34. print("")
  35. continue
  36. dest_ts = dest.stat().st_mtime
  37. if source_ts < dest_ts:
  38. print(f"!! Datei {source.name} ist aelter als die Zieldatei !!")
  39. print(str(source) + ": " + datetime.fromtimestamp(source_ts).strftime("%d.%m.%Y, %H:%M:%S"))
  40. print(str(dest) + ": " + datetime.fromtimestamp(dest_ts).strftime("%d.%m.%Y, %H:%M:%S"))
  41. print("")
  42. continue
  43. dest.unlink()
  44. os.rename(source, dest)
  45. return no_files
  46. def check(system_dir: str):
  47. max_age_ts = datetime.now().timestamp() - 24 * 60 * 60
  48. ignore_file = Path(f"{system_dir}\\Export\\ignoriert.txt")
  49. ignore_list = []
  50. if ignore_file.exists():
  51. ignore_list = ignore_file.read_text(encoding="latin-1").split("\n")
  52. clean_exit = True
  53. for dest in Path(f"{system_dir}\\Export").glob("*.csv"):
  54. if dest.name in ignore_list:
  55. continue
  56. dest_ts = dest.stat().st_mtime
  57. if dest_ts < max_age_ts:
  58. print(f"!! Datei {dest.name} ist aelter als 24 Stunden !!")
  59. print(str(dest) + ": " + datetime.fromtimestamp(dest_ts).strftime("%d.%m.%Y, %H:%M:%S"))
  60. clean_exit = False
  61. continue
  62. return clean_exit