Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个文件file.tar.gz;如何用 ruby 解压缩它以获取 dir 文件?
file.tar.gz
在 linux 上很容易做到这一点:
system("tar -xvzf file.tar.gz")
但是有什么方法可以在 Windows 上以类似的方式或其他方式做到这一点?