Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在python中重命名压缩文件中的文件名,但不提取它?
不,python ZipFile 模块不提供任何方法来做到这一点。您可以将存档提取到内存中,然后用相关文件的新文件名重写它,但这会占用大量内存,而不是您想要做的。您也许可以编辑 zipfile 的标题和信息字段,但标准 Python 界面没有简单的方法来做到这一点。