Ejemplo n.º 1
0
 /**
  * Stream command: dir_opendir
  *
  * @param  string $path
  * @param  int    $options
  *
  * @return bool
  */
 public function dir_opendir($path, $options)
 {
     try {
         $this->request = new Request();
         $this->request->setObject($this->getFileSystem()->getChildByPath($this->removeSchemeFromPath($path)));
     } catch (MissingChildException $e) {
         return false;
     }
     return true;
 }