How can i determine the max length IO#read can get in a single read on the current platform?
irb(main):301:0> File.size('C:/large.file') / 1024 / 1024
=> 2145
irb(main):302:0> s = IO.read 'C:/large.file'
IOError: file too big for single read
|
feedback
|
|
That message comes from io.c, remain_size. It is emitted when the (remaining) size of the file is greater or equal to At least in Ruby 1.8.7, the maximum value for Fixnums happens to be just half of that value (-1), so you could get the limit by
You should rather not rely on that. | |||
|
feedback
|