Exemplo n.º 1
0
 /**
  * Ensures that the media root directory is available
  *
  * @return bool
  */
 private function ensureRootDirectoryAvailable()
 {
     if (!$this->Filesystem->exists(public_path() . '/' . $this->config['root-dir'])) {
         $this->Filesystem->makeDirectory(public_path() . '/' . $this->config['root-dir'], 0775);
     }
     return true;
 }