Module: Device::Library::Cygwin
- Defined in:
- lib/device/library/cygwin.rb
Instance Method Summary collapse
Instance Method Details
#get_device_root_dir(volume_name) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/device/library/cygwin.rb', line 8 def get_device_root_dir(volume_name) # cygwinのドライブマウント先のpath prefixを取得する。 # 1.7.28では二行目の行頭 mount_root = `mount -p`.split("\n").last.split(/\s+/).first Dir.glob("#{mount_root}/*") do |drive_path| drive = drive_path.sub(/.*\//,"") # windowsのvolコマンドを利用してがんばってvolume_nameを探す。 # 一行目にボリュームラベルが含まれる。 # volume_nameが "volume" とか "hoge(*)" などだとはまる。 cmd = "cmd /c vol #{drive}:".encode(Encoding::Windows_31J) capture = `#{cmd}`.force_encoding(Encoding::Windows_31J).encode(Encoding::UTF_8) if capture.split("\n").first.match(/#{volume_name}/i) return drive_path end end nil end |