You are here

public function SystemStreamWrapper::mkdir in System stream wrapper 7

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 DrupalLocalStreamWrapper::mkdir

See also

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

File

./SystemStreamWrapper.inc, line 81

Class

SystemStreamWrapper
Drupal system stream wrapper abstract class.

Code

public function mkdir($uri, $mode, $options) {
  return FALSE;
}