You are here

public function DrupalRemoteStreamWrapper::rmdir in Remote Stream Wrapper 7

Support for rmdir().

Parameters

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

$options: A bit mask of STREAM_REPORT_ERRORS.

Return value

TRUE if directory was successfully removed.

Overrides StreamWrapperInterface::rmdir

See also

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

File

./remote_stream_wrapper.inc, line 365

Class

DrupalRemoteStreamWrapper
Stream wrapper to support local files.

Code

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