Owl\Console\Commands\ExportCommand::makeExportDir PHP Method

makeExportDir() protected method

protected makeExportDir ( $export_path )
    protected function makeExportDir($export_path)
    {
        if (!is_dir($export_path)) {
            mkdir($export_path, 0777);
        }
    }