Method: FileSystem.touch_dir

Defined in:
lib/atk/file_system.rb

.touch_dir(path) ⇒ Object



247
248
249
250
251
# File 'lib/atk/file_system.rb', line 247

def self.touch_dir(path)
    if not FileSystem.directory?(path)
        FileUtils.makedirs(path)
    end
end