使用 ruby 解压缩(zip、tar、tag.gz)文件
我想解压很多 zip 文件。 是否有模块或脚本可以检查 zip 文件的格式并对其进行解压缩? 这应该适用于Linux,我不关心其他操作系统。
I want to unzip a lot of zip files. Is there a module or script that checks which format the zip file is and decompresses it?
This should work on Linux, I don't care about other OSs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
要从 .tar.gz 文件中提取文件,您可以使用随 Ruby 分发的包中的以下方法:
Gem::Package::TarReader::Entry 指向 .tar.gz 文件中的文件或目录。
可以使用类似的代码(将 Reader 替换为 Writer)将文件写入 .tar.gz 文件。
To extract files from a .tar.gz file you can use the following methods from packages distributed with Ruby:
Each entry of type Gem::Package::TarReader::Entry points to a file or directory within the .tar.gz file.
Similar code can be used (replace Reader with Writer) to write files to a .tar.gz file.
最简单的方法可能是使用 Zlib
Zlib 是一个 Ruby 库。 下面是一个简单的程序,用于从特定 URL 获取压缩文件,将其解压缩,然后将其内容粘贴到屏幕上。
我希望这有帮助。
The easiest way is to probably use Zlib
Zlib is a Ruby library. What follows is a simple program to grab a Zipped file from a particular URL, unzip it, and paste its contents to the screen.
I hope this helps.
虽然 Florian 的答案是正确的,但它没有考虑tar LongLinks (尝试提取 jdk-7u40-linux-i586.tar.gz 来自 Oracle:P)。 下面的代码应该能够做到这一点:
Although Florian's answer is right, it does not take into account tar LongLinks (Try extracting jdk-7u40-linux-i586.tar.gz from oracle :P ). The following code should be able to do this:
Draco,谢谢你代码片段。 某些 TAR 将目录编码为以“/”结尾的路径 - 请参阅此 Wiki。 示例 tar 为 适用于 Windows 的 Oracle Server JRE 7u80< /a>. 这对他们有用:
Draco, thx for you snippet. Some TARs encode directories as paths ending with '/' - see this Wiki. Examlple tar is Oracle Server JRE 7u80 for Windows. This will work for them: