protected function Local::removeFileJailed

protected Local::removeFileJailed($file)

Removes a file.

Parameters

string $destination: The destination file to be removed.

Overrides FileTransfer::removeFileJailed

File

core/lib/Drupal/Core/FileTransfer/Local.php, line 70

Class

Local
Defines the local connection class for copying files as the httpd user.

Namespace

Drupal\Core\FileTransfer

Code

protected function removeFileJailed($file) {
  if (@!drupal_unlink($file)) {
    throw new FileTransferException('Cannot remove file %file.', NULL, array('%file' => $file));
  }
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!FileTransfer!Local.php/function/Local::removeFileJailed/8.1.x