Support for mkdir().

Parameters

$uri: A string containing the URI to the directory to create.

$mode: Permission flags - see mkdir().

$options: A bit mask of STREAM_REPORT_ERRORS and STREAM_MKDIR_RECURSIVE.

Return value

TRUE if directory was successfully created.

Overrides StreamWrapperInterface::mkdir

See also

http://php.net/manual/streamwrapper.mkdir.php

File

includes/stream_wrappers.inc, line 781
Drupal stream wrapper interface.

Class

DrupalLocalStreamWrapper
Drupal stream wrapper base class for local files.

Code

public function mkdir($uri, $mode, $options) {
  $this->uri = $uri;
  $recursive = (bool) ($options & STREAM_MKDIR_RECURSIVE);
  if ($recursive) {

    // $this->getLocalPath() fails if $uri has multiple levels of directories
    // that do not yet exist.
    $localpath = $this
      ->getDirectoryPath() . '/' . $this
      ->getTarget($uri);
  }
  else {
    $localpath = $this
      ->getLocalPath($uri);
  }
  if ($options & STREAM_REPORT_ERRORS) {
    return drupal_mkdir($localpath, $mode, $recursive);
  }
  else {
    return @drupal_mkdir($localpath, $mode, $recursive);
  }
}