protected FTPExtension::removeFileJailed($destination)
Removes a file.
string $destination: The destination file to be removed.
Overrides FileTransfer::removeFileJailed
protected function removeFileJailed($destination) { if (!ftp_delete($this->connection, $destination)) { throw new FileTransferException("Unable to remove to file @file", NULL, array('@file' => $destination)); } }
© 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!FTPExtension.php/function/FTPExtension::removeFileJailed/8.1.x