summaryrefslogtreecommitdiff
path: root/benchmark/bm_io_file_create.rb
blob: 2f205c1333ae5c4f97e58aeeb5a8023a583e5445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# Create files
#

max = 200_000
file = './tmpfile_of_bm_io_file_create'

max.times{
  f = open(file, 'w')
  f.close#(true)
}
File.unlink(file)