るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.020秒)
トップページ > クラス:File[x] > クエリ:realpath[x] > クエリ:file.realpath[x]

別のキーワード

  1. pathname realpath
  2. file realpath
  3. _builtin realpath
  4. realpath pathname
  5. realpath

ライブラリ

検索結果

File.realpath(pathname, basedir = nil) -> String (21138.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") # => "/"
//}...