English 中文(简体)
Implementing SFTP in 2.0
原标题:
  • 时间:2009-11-18 04:51:59
  •  标签:
  • c#-2.0
  • sftp

I want to write SFTP clients and servers in .NET 2.0. Is that possible? Please give me some suggestions

最佳回答

Take a look at SharpSSH. It has an open source BSD-style license and supports SCP and SFTP.

问题回答

The .NET Framework 2.0 does not include any support for SSH/SFTP. You probably have to try one of third party solutions. Our Rebex SFTP for .NET can be worth checking. Check the samples and tutorials to see if it fits your needs.

If you want a commercial package, take a look at edtFTPnet/PRO. It supports multiple connections, directory transfers, and lots of other neat features (I m one of the developers on the product).

See SSH.NET - it s still in development/maintained, unlike SharpSSH (unless I got bad intel)

Sample code for uploading file.





相关问题
Download file from SFTP server in Python Paramiko

I am using Python Paramiko to retrieve/search file from an SFTP server. I get all file in the directory. What I need is specific file from that directory. How do I get it?

SFTP using ftplib

I need to download a file from a host using SFTP. Do you know if is it possible to do that using Python ftplib? I saw an example here, but when I try to connect I receive EOFError. I tried this code:...

Ruby abstraction

I m new to Ruby, coming primarily from C# and ActionScript 3 (among other langauges). I m curious about abstracting functionality. Specifically, wrapping and abstracting Ruby s FTP and SFTP libs. I ...

How to SFTP upload files from PHP

I m having trouble using PHP to SFTP upload files to a remote server. When I use cURL, I m getting the error described here: SFTP from PHP - undefined constant CURLOPT_PROTOCOLS and CURLPROTO_SFTP? ...

Implementing SFTP in 2.0

I want to write SFTP clients and servers in .NET 2.0. Is that possible? Please give me some suggestions

热门标签