You are here

public function DrupalRemoteStreamWrapper::mkdir in Remote 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 StreamWrapperInterface::mkdir

See also

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

File

./remote_stream_wrapper.inc, line 349

Class

DrupalRemoteStreamWrapper
Stream wrapper to support local files.

Code

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