ruby--ruby/benchmark/bm_io_file_create.rb

14 lines
158 B
Ruby
Raw Normal View History

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