зеркало из https://github.com/github/ruby.git
14 строки
146 B
Ruby
14 строки
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)
|
||
|
|