You are here

protected function FTPExtension::removeFileJailed in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/FileTransfer/FTPExtension.php \Drupal\Core\FileTransfer\FTPExtension::removeFileJailed()
  2. 10 core/lib/Drupal/Core/FileTransfer/FTPExtension.php \Drupal\Core\FileTransfer\FTPExtension::removeFileJailed()

Removes a file.

Parameters

string $destination: The destination file to be removed.

Overrides FileTransfer::removeFileJailed

File

core/lib/Drupal/Core/FileTransfer/FTPExtension.php, line 75

Class

FTPExtension
Defines a file transfer class using the PHP FTP extension.

Namespace

Drupal\Core\FileTransfer

Code

protected function removeFileJailed($destination) {
  if (!ftp_delete($this->connection, $destination)) {
    throw new FileTransferException("Unable to remove the file @file", 0, [
      '@file' => $destination,
    ]);
  }
}