gebos_backup.py 776 B

1234567891011121314151617181920212223242526272829
  1. import os
  2. from pathlib import Path
  3. def gebos_backup(base_dir=None):
  4. if base_dir is None:
  5. base_dir = "E:\\GEBOS"
  6. source_path = Path(base_dir) / "data"
  7. target_path = base_dir + "/archive"
  8. for source_file in source_path.glob("*.csv"):
  9. # print(source_file)
  10. table, timestamp = source_file.name.split("2", 1)
  11. timestamp = "2" + timestamp
  12. year = timestamp[:4]
  13. month = timestamp[4:6]
  14. target = Path(
  15. f"{target_path}/{year}/{table}/{year}-{month}/{source_file.name}"
  16. ).absolute()
  17. os.makedirs(target.parent, exist_ok=True)
  18. if target.exists():
  19. target.unlink()
  20. print(target)
  21. source_file.rename(target)
  22. if __name__ == "__main__":
  23. gebos_backup()