protected function FileSystem::mkdirCall in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/File/FileSystem.php \Drupal\Core\File\FileSystem::mkdirCall()
Helper function. Ensures we don't pass a NULL as a context resource to mkdir().
See also
1 call to FileSystem::mkdirCall()
- FileSystem::mkdir in core/
lib/ Drupal/ Core/ File/ FileSystem.php - Creates a directory, optionally creating missing components in the path to the directory.
File
- core/
lib/ Drupal/ Core/ File/ FileSystem.php, line 248
Class
- FileSystem
- Provides helpers to operate on files and stream wrappers.
Namespace
Drupal\Core\FileCode
protected function mkdirCall($uri, $mode, $recursive, $context) {
if (is_null($context)) {
return mkdir($uri, $mode, $recursive);
}
else {
return mkdir($uri, $mode, $recursive, $context);
}
}