如何在C#(.NET)中将文件上传到SFTP服务器?

如何在C#(.NET)中将文件上传到SFTP服务器?

How do I upload a file to an SFTP server in C# (.NET)?

是否存在免费的.NET库,我可以使用该库将文件上载到SFTP(SSH FTP)服务器,该服务器在上载问题时引发异常并可以监视其进度?


也许您可以编写脚本/控制winscp?

更新:winscp现在具有一个.NET库,它是一个支持SFTP,SCP和FTPS的nuget包。


以下代码显示了如何使用Rebex SFTP组件将文件上传到SFTP服务器。

1
2
3
4
5
6
7
8
9
// create client, connect and log in
Sftp client = new Sftp();
client.Connect(hostname);
client.Login(username, password);

// upload the 'test.zip' file to the current directory at the server
client.PutFile(@"c:\data\test.zip","test.zip");

client.Disconnect();

您可以使用LogWriter属性将完整的通信日志写入文件,如下所示。示例输出(来自FTP组件,但SFTP输出类似)可以在此处找到。

1
2
client.LogWriter = new Rebex.FileLogWriter(
   @"c:\temp\log.txt", Rebex.LogLevel.Debug);

或使用以下事件拦截通信:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Sftp client = new Sftp();
client.CommandSent += new SftpCommandSentEventHandler(client_CommandSent);
client.ResponseRead += new SftpResponseReadEventHandler(client_ResponseRead);
client.Connect("sftp.example.org");

//...
private void client_CommandSent(object sender, SftpCommandSentEventArgs e)
{
    Console.WriteLine("Command: {0}", e.Command);
}

private void client_ResponseRead(object sender, SftpResponseReadEventArgs e)
{
    Console.WriteLine("Response: {0}", e.Response);
}

有关更多信息,请参见教程或下载试用版并检查样本。


.net框架中没有针对此的解决方案。

http://www.eldos.com/sbb/sftpcompare.php概述了一系列非免费选项。

您最好的免费选择是使用Granados扩展SSH。 http://www.routrek.co.jp/en/product/varaterm/granados.html


对于另一个非免费选项,请尝试edtFTPnet / PRO。它具有对SFTP的全面支持,并且在需要时还支持FTPS(当然还有FTP)。


不幸的是,它不在.NET Framework本身中。我希望您可以与FileZilla集成,但是我不认为它公开了一个接口。我认为他们确实有脚本,但是显然不会那么干净。

我在执行SFTP的项目中使用过CuteFTP。它公开了一个COM组件,我在其中创建了一个.NET包装器。您会发现,要抓住的是权限。它在安装CuteFTP的Windows凭据下运行精美,但是在其他凭据下运行需要在DCOM中设置权限。


推荐阅读