gpt4 book ai didi

python - 在 Windows 上使用 Python 连接 gzipped 文件

转载 作者:行者123 更新时间:2023-12-04 23:03:11 26 4
gpt4 key购买 nike

是否有一种节省内存的方法可以在 Windows 上使用 Python 连接 gzipped 文件而不解压缩它们?

根据 this answer 上的评论,它应该很简单:

cat file1.gz file2.gz file3.gz > allfiles.gz

但是我如何在 Windows 上用 Python 做到这一点?

最佳答案

只需继续写入同一个文件。

with open(..., 'wb') as wfp:
for fn in filenames:
with open(fn, 'rb') as rfp:
shutil.copyfileobj(rfp, wfp)

关于python - 在 Windows 上使用 Python 连接 gzipped 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18208898/

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