资源简介
支持文件夹嵌套上传下载 调用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
相关资源
- 64位libstdc++.so.6.0.22,解决glibcxx not f
- 全方位图像展开程序
- vibe运动目标提取opencv C++源代码
- C语言解析精粹第二版pdf()
- blender 源代码 c c++ git 2016-4-3同步获取
- 纯C语言——电子相册
- VC++串口modbus测试工程
- Visual C++从入门到精通(第3版) 高清
- windows标准打印机状态转换为AEA标准
- MFC下实现OpenGL纹理贴图
- C语言四大圣经
- C++软件渲染管线
- Goc编程工具
- gcc.tar(gcc-4.8.5-39.el7.x86_64.rpm)
- mfc复制文件显示进度
- CTP行情接收工具和行情拆分工具 完整
- CC3D飞控资料(代码原理图)
- 基于VS2010MFC平台使用C++编写的上位机
- C++内存管理课件——侯捷老师
- Programming principles and practice Using C++ (
- 黑马程序员最新24期C/C++全栈培训讲义
- vb关于api编程的pdf电子书《Visual basi
- MSVBCRT.AIO.2020.04.10.X86+X64.zip
- MFC项目:图书管理系统
- QR码二维码编码C++源代码VS2010编译环境
- QR二维码解码,C++源代码VS2010编译环境
- cmake-3.12.0-win64-x64
- 数据结构与算法分析:C语言描述(原
- 11_人脸检测与识别系统.zip
- 猴博士课件C语言、大学物理电磁学、
评论
共有 条评论