Ruby 通过拖放到 rb 脚本上接受参数

发布于 2024-09-12 16:59:57 字数 289 浏览 3 评论 0原文

可能的重复:
启用将文件拖放到 Ruby 脚本上

我想打开 ruby​​,并以删除的文件作为参数。我运行 Win 7 Enterprise、Ruby 1.8.6 并尝试了 RubyDragAndDrop.dll,但无法安装。有什么想法吗?

Possible Duplicate:
Enable dropping a file onto a Ruby script

I would like to have ruby open with dropped files as arguments. I running Win 7 Enterprise, Ruby 1.8.6 and have tried RubyDragAndDrop.dll, which I could not get installed. Any ideas?

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

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

发布评论

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

评论(1

花开半夏魅人心 2024-09-19 16:59:57

一种替代方法是创建一个处理拖放部分的批处理文件。如此处所示,当您将文件拖放到批处理文件中,删除的文件列表将以空格分隔的列表形式存储在 %* 中。一个简单地表示 ruby yourscript.rb %* 的批处理文件应该获取此文件列表并将其传递给您的脚本(您可以在其中使用 ARGS 数组访问参数) 。

One alternative is to create a batch file that handles the drag and drop part. As seen here, when you drag and drop files onto a batch file, the list of dropped files will be stored in %* as a space-separated list. A batch file that simply said ruby yourscript.rb %* should take this list of files and pass it to your script (where you can access the arguments using the ARGS array).

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