るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.006秒)
トップページ > クエリ:mount[x] > ライブラリ:pathname[x]

別のキーワード

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

クラス

検索結果

Pathname#mountpoint? -> bool (6102.0)

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

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

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

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