zip_backup.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import glob
  2. import zipfile
  3. from os import path
  4. class zip_backup:
  5. root_dir = ""
  6. ignore = []
  7. backup_list = []
  8. def ignore_list(self):
  9. gitignore = self.root_dir + "\\.gitignore"
  10. if not path.exists(gitignore):
  11. pass
  12. with open(gitignore, "r") as f:
  13. for line in f.readlines():
  14. line = line.strip().replace("/", "\\").lower()
  15. if line[:1] == "*":
  16. if line[-1] == "*":
  17. line = line[1:-1]
  18. else:
  19. line = line[1:] + "\\"
  20. else:
  21. line = "\\" + line + "\\"
  22. self.ignore.append(line)
  23. def ignored(self, filename):
  24. rel_filename = "\\" + filename.replace(self.root_dir, "").lower() + "\\"
  25. for e in self.ignore:
  26. if e in rel_filename:
  27. return True
  28. return False
  29. def check_dir(self, current_dir):
  30. if self.root_dir == "":
  31. self.root_dir = current_dir
  32. self.ignore_list()
  33. for entry in glob.glob(current_dir + "\\*"):
  34. if path.isdir(entry):
  35. self.check_dir(entry)
  36. elif not self.ignored(entry):
  37. self.backup_list.append(entry)
  38. def zip_to_file(self, zip_file):
  39. with zipfile.ZipFile(zip_file, "w", compression=zipfile.ZIP_DEFLATED, compresslevel=9) as zip:
  40. for e in self.backup_list:
  41. zip.write(e)
  42. if __name__ == "__main__":
  43. z_backup = zip_backup()
  44. z_backup.check_dir("C:\\GAPS_Autosys")
  45. # print(backup_list[:10])
  46. z_backup.zip_to_file("C:\\GAPS_Autosys\\Test.zip")