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

max = 50_000
file = './tmpfile_of_bm_io_file_create'

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