function FileSystem::delete
Same name in other branches
- 9 core/lib/Drupal/Core/File/FileSystem.php \Drupal\Core\File\FileSystem::delete()
- 8.9.x core/lib/Drupal/Core/File/FileSystem.php \Drupal\Core\File\FileSystem::delete()
- 11.x core/lib/Drupal/Core/File/FileSystem.php \Drupal\Core\File\FileSystem::delete()
1 call to FileSystem::delete()
- FileSystem::deleteRecursive in core/
lib/ Drupal/ Core/ File/ FileSystem.php
File
-
core/
lib/ Drupal/ Core/ File/ FileSystem.php, line 316
Class
- FileSystem
- Provides helpers to operate on files and stream wrappers.
Namespace
Drupal\Core\FileCode
public function delete($path) {
if (is_file($path)) {
if (!$this->unlink($path)) {
throw new FileException("Failed to unlink file '{$path}'.");
}
return TRUE;
}
if (is_dir($path)) {
throw new NotRegularFileException("Cannot delete '{$path}' because it is a directory. Use deleteRecursive() instead.");
}
// Return TRUE for non-existent file as the current state is the intended
// result.
if (!file_exists($path)) {
return TRUE;
}
// We cannot handle anything other than files and directories.
// Throw an exception for everything else (sockets, symbolic links, etc).
throw new NotRegularFileException("The file '{$path}' is not of a recognized type so it was not deleted.");
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.