Exemplo n.º 1
0
 /**
  * opens a directory
  *
  * @param   string  $path
  * @param   int     $options
  * @return  bool
  */
 public function dir_opendir($path, $options)
 {
     $path = $this->resolvePath(vfsStream::path($path));
     $this->dir = $this->getContentOfType($path, vfsStreamContent::TYPE_DIR);
     if (null === $this->dir || $this->dir->isReadable(vfsStream::getCurrentUser(), vfsStream::getCurrentGroup()) === false) {
         return false;
     }
     $this->dirIterator = $this->dir->getIterator();
     return true;
 }