How do I delete or replace a file in a zip archive?

回眸只為那壹抹淺笑 提交于 2019-11-28 07:19:08

问题


I'm creating a program in Python which downloads a set of files and puts them into an archive with the zipfile module.

I already found out how to append to the archive, but there are cases where the files in the archive already exist and should be overwritten.

Currently, if I append an already existing file to the archive I get a duplicate.

Does anyone know how to delete a file in an archive?


回答1:


From http://docs.python.org/2/library/zipfile

ZipFile.namelist()
Return a list of archive members by name.

So it is trivial to get hold of the members list before appending to the file and performing a check operation against the list of existing members within the archive.

In addition: removing from a ZIP file is not supported. You need to write a new archive if needed and copy over existing files and omit the file to be removed.

See also

Delete file from zipfile with the ZipFile Module



来源:https://stackoverflow.com/questions/13917340/how-do-i-delete-or-replace-a-file-in-a-zip-archive

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!