Shrikanth Hathwar
Shrikanth Hathwar

Reputation: 1160

Suggestion on File I/O opertion with 1024 bytes chunks

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

Answers (1)

mpapis
mpapis

Reputation: 53158

http://ruby-doc.org/core/classes/IO.html#M002270 :

f = File.new("testfile")
f.read(1024)

Upvotes: 1

Related Questions