Method: Hanami::Utils::Files.mkdir
- Defined in:
- lib/hanami/utils/files.rb
permalink .mkdir(path) ⇒ Object
Creates a directory for the given path. It assumes that all the tokens in ‘path` are meant to be a directory. All the intermediate directories are created.
69 70 71 |
# File 'lib/hanami/utils/files.rb', line 69 def self.mkdir(path) FileUtils.mkdir_p(path) end |