Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. FileSystem.php

function FileSystem::unlink

Same name in this branch
  1. 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\File

Code

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);
    }
}
RSS feed
Powered by Drupal