使用 RubyZip 生成 ZIP 文件时设置压缩级别
我有一个 Ruby 程序,它使用 rubyzip gem 压缩 XML 文件的目录树。我的问题是文件开始变重,我想提高压缩级别,因为压缩时间不是问题。
我在 rubyzip 文档 中找不到指定创建的 ZIP 文件的压缩级别的方法。
有人知道如何更改此设置吗?是否有另一个 Ruby 库允许指定压缩级别?
I have a Ruby program that zips a directory tree of XML files using the rubyzip gem. My problem is that the file is starting to be heavy and I would like to increase the compression level, since compression time is not an issue.
I could not find in the rubyzip documentation a way to specify the compression level for the created ZIP file.
Anyone know how to change this setting? Is there another Ruby library that allows to specify compression level?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是我通过查看 rubyzip 内部创建的代码。
Here is the code I created by looking at rubyzip internal.
通过调用“zip”程序或不进行压缩的操作,您可能会获得更好的牵引力。
you'll probably get better traction by calling out to the 'zip' program or what not to do the zipping.