在 Windows 上用 ruby​​ 提取存档

发布于 2024-10-15 19:37:05 字数 263 浏览 4 评论 0原文

我在 Windows 计算机上提取 zip 存档时遇到问题。 我目前正在开发 buildr 的扩展,它在 Linux 和 Mac OS X 上运行良好。 我使用 buildr 中的内置函数来提取构建在 ruby​​zip 之上的存档,但 ruby​​zip 在 Windows 上失败:

NotImplementedError:symlink() 函数在此机器上未实现

任何人都知道我如何在 Windows 上实现此功能。

I am having trouble extracting a zip-archive on a windows machine.
I am currently working on an extension for buildr, which works fine on Linux and Mac OS X.
I am using a built-in function in buildr to extract my archive which is built on top of rubyzip but rubyzip fails on windows with:

NotImplementedError : symlink() function is unimplemented on this machine

Anyone knows how I can make this work on Windows.

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

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

发布评论

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

评论(1

碍人泪离人颜 2024-10-22 19:37:05

安装unzip,将其放在你的系统路径中,然后只需使用

myfile = "foo.zip"
`unzip #{myfile}`

Ruby中的`...`命令就可以执行系统命令。

Install unzip, put it in your system path, and then simply

myfile = "foo.zip"
`unzip #{myfile}`

The `...` command in Ruby allows you to execute system commands.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文