You are here

protected function elFinderVolumeDrupal::_rmdir in elFinder file manager 8.2

Same name and namespace in other branches
  1. 7.3 inc/elfinder.drupalfs.driver.inc \elFinderVolumeDrupal::_rmdir()
  2. 7.2 inc/elfinder.drupalfs.driver.inc \elFinderVolumeDrupal::_rmdir()

Remove dir

@author Alexey Sukhotin

Parameters

string $path dir path:

Return value

bool

File

src/Controller/elFinderVolumeDrupal.php, line 214
elFinder driver for Drupal filesystem.

Class

elFinderVolumeDrupal
@file

Code

protected function _rmdir($path) {
  return @drupal_rmdir($path);
}