Ruby 通过拖放到 rb 脚本上接受参数
可能的重复:
启用将文件拖放到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种替代方法是创建一个处理拖放部分的批处理文件。如此处所示,当您将文件拖放到批处理文件中,删除的文件列表将以空格分隔的列表形式存储在
%*
中。一个简单地表示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 saidruby yourscript.rb %*
should take this list of files and pass it to your script (where you can access the arguments using theARGS
array).