binread(path, length = nil, offset = 0) -> String | nil
[permalink][rdoc][edit]-
path で指定したファイルを open し、offset の所まで seek し、 length バイト読み込みます。
Kernel.#open と同様 path の先頭が "|" ならば、"|" に続くコマンドの出力を読み取ります。
length を省略するとファイルの末尾まで読み込みます。
ファイルを開くときの mode は "rb:ASCII-8BIT" です。
IO.write("testfile", "This is line one\nThis is line two\nThis is line three\nAnd so on...\n") IO.binread("testfile") # => "This is line one\nThis is line two\nThis is line three\nAnd so on...\n" IO.binread("testfile", 20) # => "This is line one\nThi" IO.binread("testfile", 20, 10) # => "ne one\nThis is line "
[SEE_ALSO] IO.read