Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any OSS .Net FTP (client) with TLS and SSL? [closed]

Does anyone know of an open source library that does ftp-client with TLS and SSL for dotNET?

We are using a commercial library now but we are not very happy with it, so we are thinking of switching. So instead of rolling our own, are there any lgpl (or equivalent) librarys out there?

Or - If we have to roll our own (it will be a LGPL or BSD or apache style licence), does anyone know of a half finished code base we can start with?

like image 626
Nifle Avatar asked Mar 28 '09 23:03

Nifle


2 Answers

Take a look at these libraries if FtpWebRequest with SSL enabled is not sufficient:

  • http://code.google.com/p/sshsync/ - SshSync : Directory synchronisation via SSH
  • http://ftpclient.codeplex.com - FtpRequest library for .NET 2.0
  • http://www.rebex.net/ftp.net/
like image 71
Konstantin Tarkus Avatar answered Oct 15 '22 10:10

Konstantin Tarkus


Wel, FtpWebRequest supports SSL via EnableSsl (using "AUTH TLS") - is that sufficient?

like image 42
Marc Gravell Avatar answered Oct 15 '22 10:10

Marc Gravell