What is the best way to create an empty file in ruby?
Something similar to the unix command, touch:
touch file.txt
|
* Unlike touch(1) you can't update mtime or atime alone. It's also missing a few other nice options. |
||||
|
|
|
If you are worried about file handles:
From the docs:
|
|||||||
|
|
In Ruby 1.9.3:
For earlier version, either |
||||
|
|
Just an example:
|
|||||||||||||||||
|
|
And also, less advantageous, but very brief:
|
|||||
|
`touch file.txt`– Mark Thomas Nov 11 '11 at 22:16