Where can I find a FTP Server with an API? - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T05:46:01Zhttp://stackoverflow.com/feeds/question/60859http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/60859/where-can-i-find-a-ftp-server-with-an-api1Where can I find a FTP Server with an API?David Negron2008-09-13T20:46:22Z2009-03-17T20:02:55Z
<p>I am looking for a FTP Server that has a decent API. It would be great if I could code use the .NET Framework. I am currently using Secure FTP from GlobalSCAPE but I have had less than plesant experiences working with it.</p>
http://stackoverflow.com/questions/60859/where-can-i-find-a-ftp-server-with-an-api/60867#608672Answer by AlexDuggleby for Where can I find a FTP Server with an API?AlexDuggleby2008-09-13T20:55:39Z2008-09-13T20:55:39Z<p>Have you had a look at <a href="http://www.iis.net" rel="nofollow">IIS7</a>? If the server itself fits your needs (it has improved its feature set since v6) the API using Microsoft.Web.Administration is usable. </p>
<p>It's not as comfortable as administering websites (there are actually strongly typed classes in Microsoft.Web.Administration for that), but there are examples here, where you can check if the API is good enough for you:</p>
<p><a href="http://forums.iis.net/p/1150298/1873516.aspx" rel="nofollow">http://forums.iis.net/p/1150298/1873516.aspx</a></p>
http://stackoverflow.com/questions/60859/where-can-i-find-a-ftp-server-with-an-api/655637#6556371Answer by Kev for Where can I find a FTP Server with an API?Kev2009-03-17T19:12:36Z2009-03-17T19:12:36Z<p>We use <a href="http://www.g6ftpserver.com/" rel="nofollow">GeneFTP</a>'s Gene6 FTP server (Professional edition). It has a COM API that is callable via .NET interop (just add a reference to the 'Gene6 FTP Server Library' on the 'Add References' COM tab in Visual Studio). </p>
<p>The COM interop layer plays nice as well, so no problems there. We're a hoster and found it to be a pretty good product and it can handle pretty heavy use (1200 sites per server). </p>
<p>HTH<br />
Kev</p>