You are here

public function PharStreamWrapper::mkdir in Drupal 7

Parameters

string $path:

int $mode:

int $options:

Return value

bool

File

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

Class

PharStreamWrapper

Namespace

TYPO3\PharStreamWrapper

Code

public function mkdir($path, $mode, $options) {
  $this
    ->assert($path, Behavior::COMMAND_MKDIR);
  return $this
    ->invokeInternalStreamWrapper('mkdir', $path, $mode, (bool) ($options & STREAM_MKDIR_RECURSIVE), $this->context);
}