1 drupal.inc drupal_install_mkdir($file, $mask, $message = TRUE)

Creates a directory with the specified permissions.

Deprecated

since 1.0.0

See also

backdrop_install_mkdir()

Related topics

File

core/includes/drupal.inc, line 2001
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_install_mkdir($file, $mask, $message = TRUE) {
  watchdog_deprecated_function('drupal', __FUNCTION__);
  return backdrop_install_mkdir($file, $mask, $message);
}