zoukankan      html  css  js  c++  java
  • ftp

    CInternetSession* m_pInetSession;
     CFtpConnection*   m_pFtpConnection;

    //连接服务器的函数

    BOOL CftpClientDlg::connnect()
    {
     m_pInetSession = new CInternetSession( AfxGetAppName(),1,PRE_CONFIG_INTERNET_ACCESS);
     try{
      m_pFtpConnection = m_pInetSession->GetFtpConnection(L"127.0.0.1",L"chentongxin",L"tongxin",21);
      AfxMessageBox(L"服务器连接成功");
     }
     catch(CInternetException *pEx){
      
      TCHAR szError[1024] = {0};
      if(pEx->GetErrorMessage(szError,1024))
       AfxMessageBox(szError);
      else
       AfxMessageBox(L"服务器连接失败");
      pEx->Delete();
      m_pFtpConnection = NULL;

      return FALSE;
     }
     return TRUE;
    }

    //上传文件
    BOOL CftpClientDlg::putFile()
    {
     if(m_pFtpConnection->PutFile(_T("e:/test.txt"),_T("test.txt"))){
      //第一个参数为本地文件的地址,第二个为服务器端文件的地址
      AfxMessageBox(_T("发送成功!"));
      return TRUE;
     }
     else{
      AfxMessageBox(_T("发送失败!"));
      return FALSE;
     }
    }

    //下载文件
    BOOL CftpClientDlg::getFile()
    {
     if(m_pFtpConnection->GetFile(_T("afa.txt"),_T("e:/a.txt"))){
      //第一个参数为本地文件的地址,第二个为服务器端文件的地址
      AfxMessageBox(_T("下载成功!"));
      return TRUE;
     }
     else{
      AfxMessageBox(_T("下载失败!"));
      return FALSE;
     }
     return TRUE;
    }

    //关闭连接
    BOOL CftpClientDlg::disconnect()
    {
     if(m_pFtpConnection != NULL)
     {
      m_pFtpConnection->Close();
      delete m_pFtpConnection;
     }
     delete m_pInetSession;
     return TRUE;
    }

  • 相关阅读:
    EBS_FORM_开发:关于离开record验证
    EBS_FORM_开发:关于WHEN-VALIDATE-ITEM上面commit
    EBS_FORM_开发:关于LOCK-ON
    EBS_FORM_开发:实现form record ctrl+F6复制
    EBS_FORM_开发:关于切换不同BLOCK的时候弹出需要保存的窗口
    EBS_FORM_开发:FRM-40150的解决思路
    工作记录
    02_mysql表的操作
    Mysql_字符集_排序规则
    JAVA_IO
  • 原文地址:https://www.cnblogs.com/xzh1993/p/11671591.html
Copyright © 2011-2022 走看看