1件ヒット
[1-1件を表示]
(0.136秒)
ライブラリ
- ビルトイン (1)
検索結果
-
File
. realpath(pathname , basedir = nil) -> String (72961.0) -
与えられた pathname に対応する絶対パスを返します。
...合に発生します。
//emlist[例][ruby]{
ENV["HOME"] # => "/home/matz"
File.symlink("testfile", "testlink")
File.realpath("testfile") # => "/home/matz/testfile"
File.realpath("testlink") # => "/home/matz/testfile"
File.realpath("..", "/tmp") # => "/"
//}...