Home
last modified time | relevance | path

Searched refs:path_to (Results 1 – 1 of 1) sorted by relevance

/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Net/SFTP/
H A DStream.php497 * @param string $path_to
501 private function _rename($path_from, $path_to) argument
504 $path2 = parse_url($path_to);
511 $path_to = parse_url($path_to);
516 $path_to = $path_to['path']; // the $component part of parse_url() was added in PHP 5.1.2
519 if (!$this->sftp->rename($path_from, $path_to)) {
520 if ($this->sftp->stat($path_to)) {
521 … return $this->sftp->delete($path_to, true) && $this->sftp->rename($path_from, $path_to);