org\bovigo\vfs\vfsStreamWrapper::rmdir PHP Метод

rmdir() публичный Метод

removes a directory
public rmdir ( string $path, integer $options ) : boolean
$path string
$options integer
Результат boolean
    public function rmdir($path, $options)
    {
        $path = $this->resolvePath(vfsStream::path($path));
        $child = $this->getContentOfType($path, vfsStreamContent::TYPE_DIR);
        if (null === $child) {
            return false;
        }
        // can only remove empty directories
        if (count($child->getChildren()) > 0) {
            return false;
        }
        if (self::$root->getName() === $path) {
            // delete root? very brave. :)
            self::$root = null;
            clearstatcache();
            return true;
        }
        $names = $this->splitPath($path);
        $dir = $this->getContentOfType($names['dirname'], vfsStreamContent::TYPE_DIR);
        if ($dir->isWritable(vfsStream::getCurrentUser(), vfsStream::getCurrentGroup()) === false) {
            return false;
        }
        clearstatcache();
        return $dir->removeChild($child->getName());
    }