function FileSystem::unlink
Same name in this branch
- 11.1.x vendor/composer/composer/src/Composer/Util/Filesystem.php \Composer\Util\Filesystem::unlink()
Overrides FileSystemInterface::unlink
1 call to FileSystem::unlink()
- FileSystem::delete in core/
lib/ Drupal/ Core/ File/ FileSystem.php - Deletes a file without database changes or hook invocations.
File
-
core/
lib/ Drupal/ Core/ File/ FileSystem.php, line 110
Class
- FileSystem
- Provides helpers to operate on files and stream wrappers.
Namespace
Drupal\Core\FileCode
public function unlink($uri, $context = NULL) {
if (!$this->streamWrapperManager
->isValidUri($uri) && str_starts_with(PHP_OS, 'WIN')) {
chmod($uri, 0600);
}
if ($context) {
return unlink($uri, $context);
}
else {
return unlink($uri);
}
}