るりまサーチ (Ruby 2.2.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.028秒)
トップページ > バージョン:2.2.0[x] > クラス:File[x] > クエリ:realpath[x] > ライブラリ:ビルトイン[x]

別のキーワード

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

検索結果

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