drupal_rmdir

drupal_rmdir($uri, $context = NULL)

Removes a directory.

Deprecated

in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. Use \Drupal\Core\File\FileSystem::rmdir().

Related topics

File interface
Common file handling functions.

File

core/includes/file.inc, line 1168
API for handling file uploads and server file management.

Code

function drupal_rmdir($uri, $context = NULL) {
  return \Drupal::service('file_system')->rmdir($uri, $context);
}
doc_Drupal
2016-10-29 09:03:20
Comments
Leave a Comment

Please login to continue.