gpt4 book ai didi

python - 如何更新 zip 文件中的一个文件?

转载 作者:太空狗 更新时间:2023-10-29 19:33:39 42 4
gpt4 key购买 nike

<分区>

我有这个 zip 文件结构。

zipfile name = filename.zip

filename>    images>
style.css
default.js
index.html

我只想更新 index.html。我尝试更新 index.html,但它只包含 1.zip 文件中的 index.html 文件,其他文件被删除。

这是我试过的代码:

import zipfile

msg = 'This data did not exist in a file before being added to the ZIP file'
zf = zipfile.ZipFile('1.zip',
mode='w',
)
try:
zf.writestr('index.html', msg)
finally:
zf.close()

print zf.read('index.html')

那么如何使用 Python 只更新 index.html 文件呢?

42 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com