karthik
karthik

Reputation: 4735

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

Upvotes: 2

Views: 2573

Answers (4)

David De Sloovere
David De Sloovere

Reputation: 3435

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

Sample code for uploading file.

Upvotes: 1

Martin Vobr
Martin Vobr

Reputation: 5823

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.

Upvotes: 2

Bruce Blackshaw
Bruce Blackshaw

Reputation: 1006

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).

Upvotes: 1

Gonzalo
Gonzalo

Reputation: 21175

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

Upvotes: 2

Related Questions