function DrupalLocalStreamWrapper::mkdir

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

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);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.