Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can you recommend a free FTP library(class) for C#.

The class has to be well written, and have good performance.

share|improve this question
7  
please tell us which ones you already tried so we don't suggest "the bad ones" again – Natrium Sep 3 '09 at 7:54
1  
If someone had answered your question, please, mark as such. It would help people like me, who's in the same situation – NoProblemBabe Oct 15 '12 at 13:48

6 Answers

Why don't you use the libraries that come with the .NET framework: http://msdn.microsoft.com/en-us/library/ms229718.aspx

They are designed by Microsoft and should work fairly efficiently.

share|improve this answer
2  
Im not 100% sure but doesn't those classes reconnect on each request? If that is the case then the performance would suffer.. – Petoj Jul 26 '12 at 16:01
5  
The FtpWebRequest class only really works for simple, transactional FTP actions that can be modelled on the Request/Response pattern, such as downloading or uploading individual files. It's very difficult to use it to perform tasks like creating an FTP folder structure or upload and download in the same session. – Dai Sep 14 '12 at 18:16
They require a lot of "plumbing" including parsing each response. It's a good start, but it's incomplete. – James Mar 5 at 16:25

You may consider this one: http://netftp.codeplex.com

http://netftp.codeplex.com/license says it's under The MIT License.

share|improve this answer
2  
THANK YOU!!! This really works very well! it lists directory with correct date time :)))) and its fast! sample code: FtpClient ftp = new FtpClient(txtUsername.Text, txtPassword.Text, txtFTPAddress.Text); FtpListItem[] items = ftp.GetListing();//here you can get list with type, name, modified date and other properties. FtpFile file = new FtpFile(ftp, "8051812.xml");//file to get file.Download("c:\\8051812.xml");//download file.Name = "8051814.xml";//change name to get new file.Download("c:\\8051814.xml"); ftp.Disconnect();//close – Zviadi Feb 16 '12 at 19:51
Note that the compiled libraries are for .NET 3 but the code is trivial to convert to 2.0 – Deanna Nov 7 '12 at 13:45
Is is also available als NuGet package: System.Net.FtpClient – jeroenk Jun 11 at 13:27
Somewhat less easy (now?), instead of file.Download, Stream s = connection.OpenRead(filename) – jeroenk Jun 14 at 8:40
True, but you can easily add your own extension methods to have the same syntax as before. Here are mine: pastebin.com/FiKMrH76 – Erwin Mayer Jun 14 at 9:27

edtFTPnet is a free, fast, open source FTP library for .NET, written in C#.

share|improve this answer
The site's dated design does not give me much confidence about the library's quality. – jeroenk Jun 11 at 13:25

You could use the ones on CodePlex or http://www.enterprisedt.com/general/press/20060818.html

share|improve this answer

I like Alex FTPS Client which is written by a Microsoft MVP name Alex Pilotti. It's a C# library you can use in Console apps, Windows Forms, PowerShell, ASP.NET (in any .NET language). If you have a multithreaded app you will have to configure the library to run syncronously, but overall a good client that will most likely get you what you need.

share|improve this answer

I've just posted an article that presents both an FTP client class and an FTP user control.

They are simple and aren't very fast, but are very easy to use and all source code is included. Just drop the user control onto a form to allow users to navigate FTP directories from your application.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.