/**
  * Method to create import filespace if needed
  *
  * @param   object   $hook  \Hubzero\Content\Import\Model\Hook
  * @return  boolean
  */
 private function _createImportFilespace(\Hubzero\Content\Import\Model\Hook $hook)
 {
     // upload path
     $uploadPath = $hook->fileSpacePath();
     // if we dont have a filespace, create it
     if (!is_dir($uploadPath)) {
         Filesystem::makeDirectory($uploadPath, 0775);
     }
     // all set
     return true;
 }