Skip to content Skip to sidebar Skip to footer

Deleting A Folder In A Zip File Using The Python Zipfile Module

Is it possible to delete a folder from inside a file using the ZipFile module in Python?

Solution 1:

No. Read out the rest of the archive and write it to a new zip file.


Post a Comment for "Deleting A Folder In A Zip File Using The Python Zipfile Module"