tags:

views:

193

answers:

3

How would I go about doing this?

+1  A: 

TCP/IP Sockets in C: Practical Guide for Programmers has a number of C code examples using Winsock.

There isn't one for FTP but it will get you on your way.

nzpcmad
A: 

Although you can use Winsock you'll be better off if you use a higher level API, such as WinINet, which already implements the FTP protocol.

Max Caceres
A: 

Read the FTP RFC.

ksuralta