我正在使用Tamir.SharpSsh
上傳文件到ssh服務器,下面的代碼,但我得到System.IO.IOException: Pipe closed.
任何線索爲什麼?C#/ Tamir.SharpSsh:System.IO.IOException:管道關閉
SshTransferProtocolBase scp = new Scp(SSH_HOST, SSH_USER);
scp.Password = SSH_PASSWORD;
scp.Connect();
foreach (string file in files)
{
string remotePath = "incoming/" + new FileInfo(file).Name;
scp.Put(file, remotePath);
}
scp.Close();
問候 /尼爾斯