Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Good free FTP Client Library (for Windows C++ commercial apps)? [closed]

Tags:

c++

windows

ftp

I'm looking for a good open source Windows FTP client library with a public domain or BSD-type license. Something that I have access to the source code and I can use it from C++ for Windows applications in a commercial app.

We have used Wininet for years and it's buggy and horrible. The last straw is the IE8 beta 2 contains a new bug in InternetGetLastResponseInfo(). I can no longer justify using Wininet when our users can install the latest version of IE and break our app.

I have looked at libcurl but it is way too heavy for our needs. The only thing I need is FTP support. I could spend a day stripping out all the code in libcurl I don't need, but I'd rather just start with a nice simple FTP client library, if possible.

I looked at ftplib (http://nbpfaus.net/~pfau/ftplib/) but it's GPL and I need this for a closed-source commercial app.

I've written FTP client code before, it's not that hard (unfortunately it was 15 years ago and I don't have the source code anymore). There must be a nice simple free client library that does nothing but FTP and has a license that can be used in closed-source commercial apps.

(If you are curious, the bug is that if you attempt to FtpFindFirstFile() with an FTP site where you can't make a passive-mode connection, InternetGetLastResponseInfo() doesn't return the full response. This is just one of many bugs I've found over the years. Another is that Wininet's FTP support ignores all timeout values. That particular bug has existed for years.)

like image 497
mhenry1384 Avatar asked Nov 03 '08 16:11

mhenry1384


People also ask

Are FTP free?

Classic FTP Classic FTP is a useful file transfer protocol client available for free for non-commercial use. Notable features of this free FTP client include: An intuitive UI and drag-and-drop functionality.

What app opens FTP?

FileZilla It supports bandwidth controls, passive and active modes, authentication of credentials and data, and the FTP, SFTP, and FTPS protocols.


1 Answers

You need Ultimate TCP/IP which is now free!

http://www.codeproject.com/KB/MFC/UltimateTCPIP.aspx

You get FTP. HTTP, SMTP, POP and more.

You won't regret it.

like image 165
Rob Avatar answered Sep 24 '22 22:09

Rob