Ruby 3.0 リファレンスマニュアル > ライブラリ一覧 > 組み込みライブラリ > Fileクラス > new
new(path, mode = "r", perm = 0666) -> File
[permalink][rdoc]open(path, mode = "r", perm = 0666) -> File
open(path, mode = "r", perm = 0666) {|file| ... } -> object
path で指定されるファイルをオープンし、File オブジェクトを生成して返します。
path が整数の場合はファイルディスクリプタとして扱い、それに対応する File オブジェクトを生成して返します。IO.open と同じです。ブロックを指定して呼び出した場合は、File オブジェクトを引数としてブロックを実行します。ブロックの実行が終了すると、ファイルは自動的にクローズされます。ブロックの実行結果を返します。
f = File.new("testfile", "r")
f.class # => File
f.close
f = File.open("testfile", "r")
f.class # => File
f.close
File.open("testfile", "w", 0755) { |f| f.print "test" }
File.read("testfile") # => "test"