Home
last modified time | relevance | path

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

/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSCP.php85 * @param string $remote_file
92 public function put($remote_file, $data, $mode = self::SOURCE_STRING, $callback = null) argument
98 if (empty($remote_file)) {
103 if (!$this->exec('scp -t ' . escapeshellarg($remote_file), false)) { // -t = to
115 $remote_file = basename($remote_file);
151 $temp = 'C0644 ' . $size . ' ' . $remote_file . "\n";
186 * @param string $remote_file
191 public function get($remote_file, $local_file = null, $progressCallback = null) argument
197 if (!$this->exec('scp -f ' . escapeshellarg($remote_file), false)) { // -f = from
H A DSFTP.php2104 * @param string $remote_file
2115 …public function put($remote_file, $data, $mode = self::SOURCE_STRING, $start = -1, $local_start = … argument
2121 $remote_file = $this->realpath($remote_file);
2122 if ($remote_file === false) {
2126 $this->remove_from_stat_cache($remote_file);
2141 $stat = $this->stat($remote_file);
2152 $this->remove_from_stat_cache($remote_file);
2154 $packet = Strings::packSSH2('s', $remote_file);
2287 if (!$this->setstat($remote_file, $attr, false)) {
2362 * @param string $remote_file
[all …]