Access FTP servers from your app
The FathFTP is a FTP-client and FTP-server ActiveX/COM component for Windows developers. It provides your applications with the capability to access FTP servers on the Internet, download and upload files or even continue broken transfers.
It is a fully compilant COM/ActiveX control you can use in any ActiveX / COM Windows development tools. It includes: Visual Basic, MS Access, MS Visual C++, ASP, Windows scripting, etc.
Download the trial version and explore fully functional FTP client with Visual Basic source code.
Since FathFTP has a FTP server build-in, you can build peer-to-peer applications in few moments. FathFTP is a complete FTP file transfer solution.
'Download file
FathFTPCtrl.ServerName="ftp.myserver.com"
FathFTPCtrl.Username="me"
FathFTPCtrl.Password="mypass"
FathFTPCtrl.Connect
FathFTPCtrl.Get "thedata.txt","myfile.txt",0
FathFTPCtrl.Disconnect