Method: Hanami::Utils::Files.mkdir
- Defined in:
- lib/hanami/utils/files.rb
.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.
70 71 72 |
# File 'lib/hanami/utils/files.rb', line 70 def self.mkdir(path) FileUtils.mkdir_p(path) end |