mirror of
https://github.com/chev2/RoR2-Mods.git
synced 2025-10-30 08:11:54 +00:00
13 lines
424 B
Python
13 lines
424 B
Python
import os
|
|
import zipfile
|
|
|
|
def zipfiles(z_obj, dir):
|
|
for root, dirs, files in os.walk(dir):
|
|
for file in files:
|
|
file_loc = file if not file.endswith('.dll') else f'plugins/Chev/{file}'
|
|
z_obj.write(os.path.join(root, file), arcname=file_loc)
|
|
|
|
for folder in next(os.walk('.'))[1]:
|
|
print(f'{folder}/')
|
|
with zipfile.ZipFile(f'{folder}.zip', 'w') as z:
|
|
zipfiles(z, f'{folder}/')
|