資源簡介
支持文件夾嵌套上傳下載 調用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
評論
共有 條評論