deploy_cubes.py 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. import shutil
  2. from datetime import datetime, timedelta
  3. from pathlib import Path
  4. def deploy(cube_out: str, cubes_dir: str) -> None:
  5. for p in Path(cube_out).glob("*.mdc"):
  6. mtime = datetime.fromtimestamp(p.stat().st_mtime)
  7. if mtime < datetime.now() - timedelta(days=1):
  8. continue
  9. cube_name = p.name.lower()[:-4]
  10. basename = cube_name + "__" + mtime.strftime("%Y%m%d%H%M%S")
  11. folder = Path(cubes_dir) / basename
  12. if folder.exists():
  13. continue
  14. print(basename)
  15. folder.mkdir()
  16. shutil.copy2(p, folder / p.name)
  17. for v in Path(cubes_dir).glob(cube_name + "__*.ver"):
  18. v.unlink()
  19. old_folders = list(sorted([f.name for f in Path(cubes_dir).glob(cube_name + "__*") if f.is_dir()]))[:-3]
  20. for f in old_folders:
  21. shutil.rmtree(cubes_dir + "\\" + f, ignore_errors=True)
  22. with open(cubes_dir + "\\" + basename + ".ver", "w", encoding="latin-1") as fwh:
  23. fwh.write("Dies ist eine PowerCube-Versionsdatei. Nicht löschen!\n")
  24. if __name__ == "__main__":
  25. cube_out = "C:\\GlobalCube\\System\\OPTIMA\\Cube_out"
  26. cubes_dir = "C:\\GlobalCube\\Cubes"
  27. deploy(cube_out, cubes_dir)