vote up 3 vote down star

What's a good FREE c++ API for writing a Windows XP application that can read/write to FTP sites? Free is key!

Thanks in advance!

flag

74% accept rate

4 Answers

vote up 1 vote down check

I would use either the .Net stuff, or CURL:

http://curl.haxx.se/

link|flag
vote up 1 vote down

Windows comes with built-in FTP functionality as part of WinInet subsystem and you can access them using the Win32 SDK.

These are the FTP functions it provides:

FtpCommand 
FtpCreateDirectory 
FtpDeleteFile 
FtpFindFirstFile 
FtpGetCurrentDirectory 
FtpGetFile 
FtpGetFileEx 
FtpGetFileSize 
FtpOpenFile 
FtpPutFile 
FtpPutFileEx 
FtpRemoveDirectory 
FtpRenameFile 
FtpSetCurrentDirectory
link|flag
vote up 0 vote down

Check out ftplib which is easy to use (see the online documentation).

link|flag
vote up 0 vote down

File transfer protocol client component licensed at no cost for both commercial and non-commercial use.

http://www.chilkatsoft.com/ftp-library.asp

FTP C++ Library is free as requested. If you need support refer to FTP2 for a paid subscription.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.