reopen(io) -> self
[permalink][rdoc][edit]-
自身を指定された io に繋ぎ換えます。
クラスも io に等しくなることに注意してください。 IO#pos, IO#lineno などは指定された io と等しくなります。
- [PARAM] io:
- 自身を繋ぎ換えたい IO オブジェクトを指定します。
- [EXCEPTION] IOError:
- 指定された io が close されている場合に発生します。
reopen(path) -> self
[permalink][rdoc][edit]reopen(path, mode) -> self
-
path で指定されたファイルにストリームを繋ぎ換えます。
第二引数を省略したとき self のモードをそのまま引き継ぎます。 IO#pos, IO#lineno などはリセットされます。
- [PARAM] path:
- パスを表す文字列を指定します。
- [PARAM] mode:
- パスを開く際のモードを文字列で指定します。
- [EXCEPTION] Errno::EXXX:
- 失敗した場合に発生します。
IO.write("testfile", "This is line one\nThis is line two\n") f1 = File.new("testfile", "a+") f2 = File.new("testfile") f1.print("This is line three\n") f2.readlines # => ["This is line one\n", "This is line two\n"] f1.close f2.reopen("testfile", "r") # => #<File:testfile> f2.readlines # => ["This is line one\n", "This is line two\n", "This is line three\n"] f2.close
[SEE_ALSO] Kernel.#open