特定のフォルダー内のすべてのファイルを zip で圧縮するコードがありますが、7zip で圧縮したいので、どうすればよいですか?
これは私がこれまでに持っているものです:
for date in dict_date:#zipping folders and get same name like the folder
with ZipFile(os.path.join(src, '{0}.7z'.format(date)), 'w') as myzip:
for subFolder in dict_date[date]:
for fil in os.listdir(os.path.join(src, date, subFolder)):
if not fil.endswith('.7z'):
myzip.write(os.path.join(src, date, subFolder, fil))