fix: 修复导出名称的问题
This commit is contained in:
parent
2723adf2d2
commit
01867ed9dc
|
|
@ -36,7 +36,7 @@ def export_folders_to_zip(base_dir: str = ".", output_dir: str = "output"):
|
|||
|
||||
for folder in folders:
|
||||
folder_path = os.path.join(base_dir, folder)
|
||||
zip_filename = f"{folder}_{timestamp}.zip"
|
||||
zip_filename = f"{folder}.zip"
|
||||
zip_path = os.path.join(output_dir, zip_filename)
|
||||
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in New Issue