file_move.py 2.7 KB

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