My post title almost states it all: How do I download a file from an FTP server using FTP over SSL using .NET? I have read a bit and there are several 3rd party components to purchase that wrap up this functionality.

The deal is, this is a very specefic need and is not going to grow much, so if downloading a file from an FTP server using FTP over SSL can be done using the .NET Framework (i.e. System.Net namespace or something), then that would be best. I don't need a ton of functionality, but if for some reason coding against a secure FTP server is a nightmare or not doable through the .NET Framework BCL that would be nice to know, as a 3rd party .dll might be best.

Thank you!

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Like this:

var request = (FtpWebRequest)WebRequest.Create("ftp://...");
request.EnableSsl = true;
using (var response = request.GetResponse()) 
using (var data = response.GetResponseStream()) {
    ...
}
link|improve this answer
I need to pass crededntials -> do I use a "request.Credentials = New Net.NetowrkCredential("user", "pass")" ? Also, I was given a host of sftp.domain.com and when using the code you provided it states it is "an invalid URI" (however I can get to it via a FTP/SFTP client application outside of .NET so I know the URI is valid). If I try "sftp://domain.com" I get an "The URI prefix is not recognized" exception. Any ideas on these (2) items? – atconway Oct 29 '10 at 18:00
I have a feeling SFTP is not supported via the FtpWebRequest class according to this link: connect.microsoft.com/VisualStudio/feedback/details/181054/… – atconway Oct 29 '10 at 18:09
@atconway: Try the URI, ftp://sftp.domain.com. – SLaks Oct 29 '10 at 18:36
1  
@atconway: In order to execute a command, you need a path, not just a domain name. (eg, ftp://sftp.domain.com/SomeFile) – SLaks Oct 29 '10 at 19:40
1  
@atconway: I don't know; compare the requests in a network monitor. Also, check the path and method. – SLaks Oct 29 '10 at 20:04
show 4 more comments
feedback

Here is the final VB.NET code I used:

    Dim request As System.Net.FtpWebRequest = DirectCast(WebRequest.Create(New Uri("ftp://sftp.domain.com/myFile.txt")), System.Net.FtpWebRequest)
    request.Method = WebRequestMethods.Ftp.DownloadFile
    request.EnableSsl = True
    request.Credentials = New Net.NetworkCredential("username", "password")
    request.UsePassive = True
    Dim response As System.Net.FtpWebResponse = DirectCast(request.GetResponse(), System.Net.FtpWebResponse)

Full details here:

Download FTP Files Using FTP Over SSL (SFTP) in .NET:
http://allen-conway-dotnet.blogspot.com/2010/11/download-ftp-files-using-ftp-over-ssl.html

link|improve this answer
feedback

If you need some more features like implicit SSL, hash verification, or just cleaner syntax you can use Ftp.dll FTP/FTPS client:

using(Ftp ftp = new Ftp())
{
    ftp.Connect("ftp.server.com");                       
    ftp.Login("user", "password");

    ftp.ChangeFolder("downloads");
    ftp.Download("report.txt", @"c:\report.txt");

    ftp.Close();
}

Please note that this is a commercial product and I'm the author.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.