ruby--ruby/benchmark/io_file_create.rb

14 lines
146 B
Ruby

#
# Create files
#
max = 200_000
file = './tmpfile_of_bm_io_file_create'
max.times{
f = open(file, 'w')
f.close#(true)
}
File.unlink(file)