function FTPExtension::copyFileJailed
Copies a file.
Parameters
string $source: The source file.
string $destination: The destination file.
Overrides FileTransfer::copyFileJailed
File
- 
              core/lib/ Drupal/ Core/ FileTransfer/ FTPExtension.php, line 27 
Class
- FTPExtension
- Defines a file transfer class using the PHP FTP extension.
Namespace
Drupal\Core\FileTransferCode
protected function copyFileJailed($source, $destination) {
  if (!@ftp_put($this->connection, $destination, $source, FTP_BINARY)) {
    throw new FileTransferException("Cannot move @source to @destination", 0, [
      "@source" => $source,
      "@destination" => $destination,
    ]);
  }
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
