我正在开发一个简单的WPF应用程序,其唯一目的是使用Renci SSH.net库来获取SshClient的工作目录,并进一步将其传递给SftpClient。
我似乎无法使用从RunCommand(“pwd”)返回的绝对路径使用sftpClient.ChangeDirectory更改目录。我确定路径确实存在,因为SshClient返回它,但也许有些东西我做错了,或者有错误?无论哪种方式,这是我的代码:
public static string ssh_host,
ssh_username,
ssh_password,
workingDirectory;
public MainWindow()
{
InitializeComponent();
ssh_host = "XXXXXXXXXX";
ssh_username = "XXXXXXXXXX";
ssh_password = "XXXXXXXXXX";
StartSSH();
}
private static void StartSSH()
{
using (var client = new SshClient(ssh_host, ssh_username, ssh_password))
{
try
{
client.Connect();
if (client.IsConnected)
{
Console.WriteLine("Client connected");
SshCommand getSSHWorkingDirectory = client.RunCommand("pwd");
workingDirectory = getSSHWorkingDirectory.Result;
Console.WriteLine("SSH working directory = " + workingDirectory);
// RESULT: SSH working directory = /customers/5/7/9/domain.com/httpd.private
using (var sftpClient = new SftpClient(ssh_host, ssh_username, ssh_password))
{
sftpClient.Connect();
if (sftpClient.IsConnected)
{
Console.WriteLine("SFTP working directory = " + sftpClient.WorkingDirectory);
// RESULT: SFTP working directory = /customers/5/7/9/domain.com/httpd.www <- NOTE httpd.www
sftpClient.ChangeDirectory(workingDirectory);
// ERROR: Renci.SshNet.Common.SftpPathNotFoundException: No such file
}
}
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
正如您所看到的,在尝试使用SshClient RunCommand结果更改目录时会抛出异常。
我的问题是:为什么ChangeDirectory无法执行,我将如何以正确的方式解决此问题?
非常感谢任何帮助。
答案 0 :(得分:4)
问题是从RunCommand返回的字符串有空格,我所要做的就是:
workingDirectory = getSSHWorkingDirectory.Result.Trim();
我已经尝试了两天来解决这个问题,当我第一次发布这个时,我让它在2分钟后上班。