function SSH::removeFileJailed
Removes a file.
Parameters
string $destination: The destination file to be removed.
Overrides FileTransfer::removeFileJailed
File
- 
              core/lib/ Drupal/ Core/ FileTransfer/ SSH.php, line 84 
Class
- SSH
- The SSH connection class for the update module.
Namespace
Drupal\Core\FileTransferCode
protected function removeFileJailed($destination) {
  if (!@ssh2_exec($this->connection, 'rm ' . escapeshellarg($destination))) {
    throw new FileTransferException('Cannot remove @directory.', 0, [
      '@directory' => $destination,
    ]);
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
