如何使用 python 检索 zip 文件中的目录?
如何在 python 中遍历 zip 文件的内容而不需要解压它们?
如果提取是唯一的方法,那么如果我创建一个唯一的临时文件夹并将它们提取到那里,然后遍历并删除临时文件夹,是否有效?
How do I traverse the contents of a zip file in python without having to extract them?
If extracting is the only way, is it efficient if I create a unique temp folder and extract them there then traverse and remove the temp folder afterwards?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
namelist()
方法使用ZipFile
类来获取存档中所有文件名的列表,而无需提取它们。例如:Use the
namelist()
method of theZipFile
class to get a list of all of the filenames in the archive without having to extract them. For example: