1件ヒット
[1-1件を表示]
(0.211秒)
検索結果
-
Pathname
# mountpoint? -> bool (63643.0) -
self がマウントポイントであれば真を返します。
self がマウントポイントであれば真を返します。
//emlist[例][ruby]{
require "pathname"
path = Pathname("/")
path.mountpoint? # => true
path = Pathname("/usr")
path.mountpoint? # => false
//}