るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.022秒)

別のキーワード

  1. _builtin path
  2. pathname to_path
  3. _builtin absolute_path
  4. _builtin to_path
  5. pstore path

ライブラリ

クラス

検索結果

Pathname.getwd -> Pathname (21235.0)

カレントディレクトリを元に Pathname オブジェクトを生成します。 Pathname.new(Dir.getwd) と同じです。

...カレントディレクトリを元に Pathname オブジェクトを生成します。
Path
name.new(Dir.getwd) と同じです。

//emlist[例][ruby]{
require
"pathname"

Path
name.getwd #=> #<Pathname:/home/zzak/projects/ruby>
//}

@see Dir.getwd...

Pathname.pwd -> Pathname (6135.0)

カレントディレクトリを元に Pathname オブジェクトを生成します。 Pathname.new(Dir.getwd) と同じです。

...カレントディレクトリを元に Pathname オブジェクトを生成します。
Path
name.new(Dir.getwd) と同じです。

//emlist[例][ruby]{
require
"pathname"

Path
name.getwd #=> #<Pathname:/home/zzak/projects/ruby>
//}

@see Dir.getwd...