FTP/SFTP module for .NET

Posted by Angrius on Stack Overflow See other posts from Stack Overflow or by Angrius
Published on 2010-04-28T17:57:28Z Indexed on 2012/04/05 17:30 UTC
Read the original article Hit count: 191

Filed under:
|
|
|

I am designing an auto downloader using .NET and C#. I was wondering if there is a decent/robust FTP/SFTP module out there that I can use, preferably free of charge.

EDIT: I probably should've noted that I am looking for answer from somebody who tried several and found one that works very well. I currently use .NET wrapper for libcurl for FTP and it does not behave right. For example when I connect to FTP site with Filezilla and provide a path, it finds directory just fine. With libcurl, i get a header for 404 page saying path cannot be found. I am guessing that Filezilla gets 'home' directory correctly, and libcurl puts me to the root (i tried no path, and i had no permissions to access that directory). But anyways, I just don't know enough about FTP itself, so I would like something that just works.

Thanks!

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET