Support for rmdir().
string $uri: A string containing the URI to the directory to delete.
int $options: A bit mask of STREAM_REPORT_ERRORS.
bool TRUE if directory was successfully removed.
Overrides PhpStreamWrapperInterface::rmdir
http://php.net/manual/streamwrapper.rmdir.php
public function rmdir($uri, $options) {
$this->uri = $uri;
if ($options & STREAM_REPORT_ERRORS) {
return drupal_rmdir($this
->getLocalPath());
}
else {
return @drupal_rmdir($this
->getLocalPath());
}
}