るりまサーチ (Ruby 2.3.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.091秒)

別のキーワード

  1. httpserver mount_proc
  2. webrick/httpserver mount_proc
  3. httpserver mount
  4. webrick/httpserver mount
  5. mount_proc

ライブラリ

検索結果

Pathname#mountpoint? -> bool (18307.0)

self がマウントポイントであれば真を返します。

...self がマウントポイントであれば真を返します。

//emlist[例][ruby]{
require "pathname"

path = Pathname("/")
path.mountpoint? # => true
path = Pathname("/usr")
path.mountpoint? # => false
//}...