ift_backup.py 853 B

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