「Ruby入門」RubyでWindowsファイルダイアログを開く方法
rubyコード:
require “win32ole"
cd = WIN32OLE.new(“MSComDlg.CommonDialog")
cd.filter = “All Files(*.*)|*.*" +"|Ruby Files(*.rb)|*.rb"
cd.filterIndex = 2
cd.maxFileSize = 128 # MaxFileSizeを設定
cd.showOpen()
file = cd.fileName # ファイル、パスを取得
if not file or file==""
puts “No filename entered."
else
puts “The user selected: #{file}\n"
end