Can you recommend a free FTP library(class) for C#.
The class has to be well written, and have good performance.
|
|
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. |
|||||||||||
|
|
You may consider this one: http://netftp.codeplex.com http://netftp.codeplex.com/license says it's under The MIT License. |
|||||||||||||
|
|
edtFTPnet is a free, fast, open source FTP library for .NET, written in C#. |
|||
|
|
You could use the ones on CodePlex or http://www.enterprisedt.com/general/press/20060818.html |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|