gpt4 book ai didi

c# - 如何使用 SharpSSH 将文件移动到 SFTP 服务器

转载 作者:行者123 更新时间:2023-11-30 22:00:21 26 4
gpt4 key购买 nike

需要使用 Tamir.SharpSsh.Sftp 将文件从一个文件夹移动到另一个文件夹。

    Tamir.SharpSsh.Sftp client = new Tamir.SharpSsh.Sftp(address, username, password);
client.Connect();
client.? // for move file from one folder to another

最佳答案

试试这个...

Tamir.SharpSsh.Sftp client = new Tamir.SharpSsh.Sftp(address, username, password);
client.Connect();
if(client.Connected) {
client.Rename("/source/path/file.zip", "/destination/path/file.zip");
} else {throw new ... }

在 *nix 操作系统上,移动和重命名是同义词。 Sftp 似乎继承了设计。

关于c# - 如何使用 SharpSSH 将文件移动到 SFTP 服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28669378/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com