You are here

public function SystemStreamWrapper::rmdir in System 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 DrupalLocalStreamWrapper::rmdir

See also

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

File

./SystemStreamWrapper.inc, line 84

Class

SystemStreamWrapper
Drupal system stream wrapper abstract class.

Code

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