gpt4 book ai didi

python - 如何设置 XZ 文件的 tarfile 的压缩级别?

转载 作者:行者123 更新时间:2023-12-01 07:01:17 26 4
gpt4 key购买 nike

在 Python 中,可以创建 xz tarfile:

handle = tarfile.open(dest, 'w:xz')

但是这不会设置压缩级别。

是否可以使用 tarfile 设置 XZ 压缩级别?

最佳答案

答案有点埋在 tarfile.open() 中。文档,但它说:

For modes 'w:gz', 'r:gz', 'w:bz2', 'r:bz2', 'x:gz', 'x:bz2', tarfile.open() accepts the keyword argument compresslevel (default 9) to specify the compression level of the file.

不幸的是,文档没有提到支持'w:xz'。以防万一,尝试一下,我可以确认它不会。这似乎是因为 lzma模块不支持 compresslevel 参数。不过,它确实支持预设。为什么他们在这里选择不同的名字?谁知道。 :-( 看来他们对默认压缩级别做出了不同的选择。对于其他人,他们默认选择了最大级别。对于 xz,他们选择了工具使用的默认压缩级别(级别 6)。

这意味着你会做这样的事情:

handle = tarfile.open(dest, 'w:xz', preset=9)

关于python - 如何设置 XZ 文件的 tarfile 的压缩级别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58621081/

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