FTPSend.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // FTPSend.h: interface for the CFTPSend class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_FTPSend_H__05003AE0_E234_11D2_970B_00A024EBF6AB__INCLUDED_)
  5. #define AFX_FTPSend_H__05003AE0_E234_11D2_970B_00A024EBF6AB__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include <afxsock.h> // MFC socket extensions
  10. class CFTPSend
  11. {
  12. public:
  13. CString m_retmsg;
  14. //传输文件
  15. int MoveFile(CString remotefile, CString localfile, BOOL get);
  16. //退出
  17. void LogOffServer();
  18. //登陆
  19. BOOL LogOnToServer(CString hostname, int hostport, CString username, CString password);
  20. CFTPSend();
  21. ~CFTPSend();
  22. //发送FTP命令
  23. BOOL FTPcommand(CString command);
  24. //读取响应
  25. BOOL ReadStr();
  26. //发送命令
  27. BOOL WriteStr(CString outputstring);
  28. private:
  29. //用于读写Socket数据
  30. CArchive* m_pCtrlRxarch;
  31. CArchive* m_pCtrlTxarch;
  32. CSocketFile* m_pCtrlsokfile;
  33. //控制连接Socket
  34. CSocket* m_Ctrlsok;
  35. int m_fc;
  36. BOOL ReadStr2();
  37. //打开控制连接
  38. BOOL OpenControlChannel(CString serverhost, int serverport);
  39. //关闭控制连接
  40. void CloseControlChannel();
  41. };
  42. #endif // !defined(AFX_FTPSend_H__05003AE0_E234_11D2_970B_00A024EBF6AB__INCLUDED_)