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

时间:2008-09-17 19:02:58

标签: c# .net sftp

是否存在一个免费的.NET库,我可以将文件上传到SFTP(SSH FTP)服务器,该服务器会引发上传问题的异常,并允许监控其进度?

5 个答案:

答案 0 :(得分:35)

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

更新: winscp现在a .NET library可用作支持SFTP,SCP和FTPS的nuget package

答案 1 :(得分:7)

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

// 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输出类似)here

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

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

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);
}

有关详细信息,请参阅tutorialdownload试用版并查看samples

答案 2 :(得分:2)

.net框架内没有解决方法。

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

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

答案 3 :(得分:0)

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

我在一个执行SFTP的项目中使用了CuteFTP。它暴露了一个COM组件,我创建了一个.NET包装器。你会发现,捕获权是权限。它在安装了CuteFTP的Windows凭据下运行得很漂亮,但在其他凭据下运行需要在DCOM中设置权限。

答案 4 :(得分:0)

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