You are here

public function PharStreamWrapper::rmdir in Drupal 7

Parameters

string $path:

int $options:

Return value

bool

File

misc/typo3/phar-stream-wrapper/src/PharStreamWrapper.php, line 138

Class

PharStreamWrapper

Namespace

TYPO3\PharStreamWrapper

Code

public function rmdir($path, $options) {
  $this
    ->assert($path, Behavior::COMMAND_RMDIR);
  return $this
    ->invokeInternalStreamWrapper('rmdir', $path, $this->context);
}