有没有可以用来列出非 zip 档案内容的 gem?
我正在开发一个项目,需要从各种不同的存档文件(tar.gz、rar、tar.bz2 和 zip)获取文件列表,无需扩展存档。 Rubyzip 对于 zip 文件效果很好,但我找不到其他格式的等效项。有什么建议吗?
编辑:我忘了提到这需要跨平台,所以我不能依赖外部工具。
I'm working on a project that needs to get a file list from a variety of different archives files (tar.gz, rar, tar.bz2, and zip) without expanding the archive. Rubyzip works well for zip files, but I can't find any equivalent for the other formats. Any suggestions?
Edit: I forgot to mention that this needs to be cross-platform, so I can't fall back on outside tools.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有什么东西可以处理所有格式,但是您可以通过 shell 调用并对结果进行一些解析来完成此操作。
I don't know of something which handles all formats, but you could do this with a shell call and a little bit of parsing of the result.