在 Windows 上用 ruby 提取存档
我在 Windows 计算机上提取 zip 存档时遇到问题。 我目前正在开发 buildr 的扩展,它在 Linux 和 Mac OS X 上运行良好。 我使用 buildr 中的内置函数来提取构建在 rubyzip 之上的存档,但 rubyzip 在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
安装unzip,将其放在你的系统路径中,然后只需使用
Ruby中的
`...`
命令就可以执行系统命令。Install unzip, put it in your system path, and then simply
The
`...`
command in Ruby allows you to execute system commands.