function 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\FileTransferCode
protected function removeFileJailed($destination) {
  if (!ftp_delete($this->connection, $destination)) {
    throw new FileTransferException("Unable to remove the file @file", 0, [
      '@file' => $destination,
    ]);
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
