blah blah blah is here! blah blah » Close
Howdy...I would like to know if there is any free FTP library. I've been using ChilkatDotNet2 but sadly the trial period is over.Thank you.
I wrote one from scratch a while ago, that you're free to use: http://sanity-free.org/misc/nullfx.net.zipIt's in source code form, you can either include it directly in your app, or compile / reference it from a dll.you use it something like this (just from memory, it may be slightly different):
FtpClient client = new FtpClient( new IPEndPoint( IPAddress.Loopback, 21 ), new NetworkCredential( "anonymous", "test@pass"), "c:\localDownloadDir" );client.Connect();client.Download(remoteFilePath, localFilePath);client.Upload(localFile);
answered one year ago by:
Thank you Mr MadHatter :-)
Got feedack? Found a bug? report it here.
1 answers
I wrote one from scratch a while ago, that you're free to use: http://sanity-free.org/misc/nullfx.net.zip
It's in source code form, you can either include it directly in your app, or compile / reference it from a dll.
you use it something like this (just from memory, it may be slightly different):
It does standard FTP and FTP over SSL (you specify which kind you want to use when you call Connect).
answered one year ago by:
2309
0
Thank you Mr MadHatter :-)