当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《如何在C#(.NET)中将文件上载到SFTP服务器?》经验,为你挑选了2个好方法。

是否存在可以将文件上载到SFTP(SSH FTP)服务器的免费.NET库,该服务器会抛出上载问题的异常并允许监视其进度?



1> 小智..:

也许你可以脚本/控制winscp?

更新: winscp现在有一个.NET库可用作支持SFTP,SCP和FTPS 的nuget包


[最新版本](http://winscp.net/eng/docs/library)现在甚至具有本机.NET支持!
好点子.我找到了这样做的指南:http://winscp.net/eng/docs/guide_dotnet

2> Martin Vobr..:

以下代码显示了如何使用我们的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输出类似).

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

有关详细信息,请参阅教程或下载试用版并检查样本.


当我需要将它用于SSIS包时,我之前也使用过RebEx.如果您希望通过商业第三方路线,他们有良好的支持和文档.
推荐阅读
我我檬檬我我186
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有