singleton method Dir.home

home -> String | nil[permalink][rdoc][edit]
home(user) -> String | nil

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

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



Dir.home          # => "/home/vagrant"
Dir.home("root")  # => "/root"

[SEE_ALSO] File.expand_path