Reputation: 1160
Hi I am a ruby on rails developer can any body help me in doing File I/O operation with 1024 bytes chunk at a time.
Upvotes: 1
Views: 68
Reputation: 53158
http://ruby-doc.org/core/classes/IO.html#M002270 :
f = File.new("testfile")
f.read(1024)
Upvotes: 1