在 Ruby 中读取 zip 文件中的文件注释

发布于 2024-08-08 09:20:14 字数 234 浏览 6 评论 0原文

我正在 Ruby 中进行 Python 挑战。我需要从 Zip 文件中读取文件内容和注释。内容对于 RubyZip gem 没有问题,但我无法获取注释。有什么想法吗?

I am doing Python challenge in Ruby. I need to read the file contents and comments from a Zip file. The content is no problem with the RubyZip gem but I am unable to get the comments out. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

奢华的一滴泪 2024-08-15 09:20:14

根据文档, RubyZip ZipFile 类的实例有一个 注释 属性,返回 zip 文件的注释(如果有的话)。

例如

require 'zip/zip'

Zip::ZipFile.open('zip_with_comment.zip') do |zipfile|
  puts zipfile.comment
end

According to the documentation an instance of the RubyZip ZipFile class has a comment attribute which returns the zip file's comment, if it has one.

e.g.

require 'zip/zip'

Zip::ZipFile.open('zip_with_comment.zip') do |zipfile|
  puts zipfile.comment
end
懒猫 2024-08-15 09:20:14

实际上,您需要每个文件的注释,而我很难找到这些文件 文档。以下是如何从文件中获取注释的示例。

require 'zip/zip'

Zip::ZipFile.open("6.zip") do |zipfile|
  p zipfile.get_entry("90052.txt").comment
end

You'll actually want the comments from each of the files, which I had a much harder time finding documentation on. Here's an example of how to get the comment from a file.

require 'zip/zip'

Zip::ZipFile.open("6.zip") do |zipfile|
  p zipfile.get_entry("90052.txt").comment
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文