るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.097秒)
トップページ > クエリ:I[x] > クエリ:File[x] > クエリ:expand_path[x] > バージョン:2.5.0[x] > クラス:Dir[x]

別のキーワード

  1. _builtin file?
  2. _builtin file
  3. file path
  4. file separator
  5. file truncate

ライブラリ

検索結果

Dir.home -> String | nil (9412.0)

現在のユーザまたは指定されたユーザのホームディレクトリを返します。

...されたユーザのホームディレクトリを返します。

Dir
.home や Dir.home("root") は
File.expand_path("~") や File.expand_path("~root") と
ほぼ同じです。

//emlist[例][ruby]{
Dir
.home # => "/home/vagrant"
Dir
.home("root") # => "/root"
//}

@see File.expand_path...

Dir.home(user) -> String | nil (9412.0)

現在のユーザまたは指定されたユーザのホームディレクトリを返します。

...されたユーザのホームディレクトリを返します。

Dir
.home や Dir.home("root") は
File.expand_path("~") や File.expand_path("~root") と
ほぼ同じです。

//emlist[例][ruby]{
Dir
.home # => "/home/vagrant"
Dir
.home("root") # => "/root"
//}

@see File.expand_path...