るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.025秒)
トップページ > クラス:IO[x] > クエリ:nread[x] > ライブラリ:ビルトイン[x]

別のキーワード

  1. socket so_nread
  2. io/wait nread
  3. io nread
  4. constants so_nread
  5. so_nread socket

検索結果

IO.binread(path, length = nil, offset = 0) -> String | nil (6103.0)

path で指定したファイルを open し、offset の所まで seek し、 length バイト読み込みます。

...例][ruby]{
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 IO.read...