FTP Client for Pocket PC
Environment: Embedded Visual Tools, NT4 SP5, PocketPC
The class FtpSockClient shows the functionality offered by the pocket PC device for socket data transfer. The class is single threaded, based on the blocking CSocket calls. You can use the class as:
CftpSockClient ftp; // Connect to some server BOOL bResult = ftp.ConnectToServer(_T("ftp.microsoft.com"), 21); if (!bResult) { AfxMessageBox(L"Error Connecting to Server"); return; } // Try logging as anonymous bResult = ftp.UserLogin(L"anonymous", L"dummy@ftpdemo.com"); if (!bResult ) { AfxMessageBox(L"Error Connecting to Server"); return; } CString csDir = ftp.GetWorkingDirectory(); CString csFileList; ftp.GetFileList(csDir, csFileList); ftp. DisconnectFromServer();
The class shows elementary functionality and is an attempt at sockets. Please do tell me the bugs that you find. Ill be glad to fix them...if I am able to.
Downloads
Download source - 7 KbDownload demo project - 52 Kb
IT Offers
More for Developers
Top Authors
- Voted: 13 times.
- Voted: 11 times.
- Voted: 11 times.
- Voted: 8 times.
- Voted: 8 times.
- Paul Kimmel 214 articles
- Zafir Anjum 120 articles
- 15Seconds.com 99 articles
- Tom Archer - MSFT 83 articles
- Jeffrey Juday 82 articles


All