• 大小: 4.41KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-28
  • 语言: C/C++
  • 标签: c  

资源简介


支持文件夹嵌套上传下载 调用MFC类实现 本地文件遍历采用Boost库

资源截图

代码片段和文件信息

//------------------------------------------------------------------------------
// 版权声明:本程序模块属于OTC网关的一部分
//           金证科技股份有限公司  版权所有
//
// 模块名称:
// 模块描述:FTP上传下载类
// 开发作者:李东升
// 创建日期:2015-12-04
// 模块版本:1.0.0.0
//------------------------------------------------------------------------------

#include 
#include 
#include 
#include “CFtpClient.h“
#include 
#include 
#include 


CFtpClient::CFtpClient()
{
m_pInternetSession = NULL;
m_pFtpConnection = NULL;
m_strServerAddress = “127.0.0.1“;
m_strUsername = “123“;
m_strPassword = “123“;
m_nServerPort = 21;
m_strDownloadLocalDir = “D:\\DownloadLocal“;
m_strUploadServerDir = “\\“;
}

CFtpClient::~CFtpClient()
{
this->Close();
}

bool CFtpClient::Connect()
{
if (m_pInternetSession != NULL)
{
return true;
}

m_pInternetSession = new CInternetSession(“OTC_FTP_Client“);
int nCnt = 1;
while(nCnt++)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       8689  2015-12-08 15:57  FTP_Client_Demo2\CFtpClient.cpp

     文件       1158  2015-12-08 15:34  FTP_Client_Demo2\CFtpClient.h

     文件       4339  2015-12-07 10:23  FTP_Client_Demo2\FTP_Client_Demo2.vcproj

     文件        475  2015-12-08 16:14  FTP_Client_Demo2\main.cpp

     目录          0  2015-12-08 17:39  FTP_Client_Demo2

----------- ---------  ---------- -----  ----

                14661                    5


评论

共有 条评论