function FileTransferFTPExtension::removeFileJailed

Overrides FileTransfer::removeFileJailed

File

includes/filetransfer/ftp.inc, line 103

Class

FileTransferFTPExtension

Code

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

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.