Read a binary file by byte : Binary File « File Directory « Ruby






Read a binary file by byte


open('binary', 'rb') { |f| f.each_byte { |b| puts b } }

 








Related examples in the same category

1.Processing a Binary File
2.Read one byte from a binary file
3.Move file position
4.Seek by position
5.File read 500 bytes
6.Open a binary file with rb+