Is there any built in functionality that enables downloading files from FTP in .NET?
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
2009-09-07 15:31:31
noted... thanks for this, used that class in .net 1.1... Should have mentioned this....
Rippo
2009-09-07 16:24:04
A:
Yes, you should be able to make use of FtpWebRequest: http://msdn.microsoft.com/en-us/library/system.net.ftpwebrequest.aspx
Curt Nichols
2009-09-07 15:29:25