code for connecting to an ftp server

gomindi

Active member
Joined
Aug 28, 2002
Messages
25
Location
UT
I am creating a windows application and I want to connect to an FTP server so that I can send/receive data. anyone have any basic code for this task? Any help would definitely be appreciated.
 
The .NET framework includes limited support for FTP. Youll need to implement the FTP protocol manually or use a third party control, if they are available.
 
I havent done so myself, as I have neither the time or need to, but it would be a fairly straightforward task. Consult the FTP RFC to learn more about the protocol.
 
Fortunately FTP is quite an easy protocol, and the RFC is quite descriptive. Youll want RFC 959.
 
Back
Top