tags:

views:

88

answers:

3

Is there any built in functionality that enables downloading files from FTP in .NET?

+1  A: 

Don't think so, I have used this in the past...

Click here

Rippo
Theres no need to create a C# version of an FTP client library which is originally written in Java since .Net Framework has FtpWebRequest since 2.0.
Alfred Myers
noted... thanks for this, used that class in .net 1.1... Should have mentioned this....
Rippo
+6  A: 

Starting with .Net Framework 2.0: System.Net.FtpWebRequest

Alfred Myers
A: 

Yes, you should be able to make use of FtpWebRequest: http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx

Curt Nichols