File Directory Ruby

open('binary', 'wb') do |f|
  (0..100).step(10) { |b| f << b.chr }
end
s = open('binary', 'rb') { |f| f.read }