• 大小: 0.13M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-21
  • 语言: C/C++
  • 标签:

资源简介

C++ 利用套接字实现FTP文件下载(提高篇-实例553).zip

资源截图

代码片段和文件信息

// DownSocket.cpp : implementation file
//

#include “stdafx.h“
#include “FtpDown.h“
#include “DownSocket.h“
#include “FtpDownDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDownSocket

CDownSocket::CDownSocket(CFtpDownDlg* pDlg)
: m_pDlg(pDlg)
{
}

CDownSocket::~CDownSocket()
{
}


// Do not edit the following lines which are needed by ClassWizard.
#if 0
BEGIN_MESSAGE_MAP(CDownSocket CSocket)
//{{AFX_MSG_MAP(CDownSocket)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
#endif // 0

/////////////////////////////////////////////////////////////////////////////
// CDownSocket member functions

void CDownSocket::OnAccept(int nErrorCode) 
{
// TODO: Add your specialized code here and/or call the base class
CSocket::OnAccept(nErrorCode);
m_pDlg->AcceptConnect(this);

}

void CDownSocket::OnReceive(int nErrorCode) 
{

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         188  2013-12-27 10:48  说明.txt
     文件        1069  2007-08-21 15:49  FtpDown\DownSocket.cpp
     文件        1271  2007-08-21 15:49  FtpDown\DownSocket.h
     文件       27328  2013-12-07 11:02  FtpDown\FtpDown.aps
     文件        1713  2013-12-27 10:45  FtpDown\FtpDown.clw
     文件        2123  2007-08-21 15:49  FtpDown\FtpDown.cpp
     文件        4372  2013-12-27 10:40  FtpDown\FtpDown.dsp
     文件         539  2007-08-21 15:49  FtpDown\FtpDown.dsw
     文件        1335  2007-08-21 15:49  FtpDown\FtpDown.h
     文件      292352  2013-12-27 10:45  FtpDown\FtpDown.opt
     文件        5968  2007-08-21 15:49  FtpDown\FtpDown.rc
     文件        8190  2013-12-27 10:41  FtpDown\FtpDownDlg.cpp
     文件        1887  2007-08-21 15:49  FtpDown\FtpDownDlg.h
     文件        3597  2007-08-21 15:49  FtpDown\ReadMe.txt
     文件        1052  2007-08-21 15:49  FtpDown\resource.h
     文件         209  2007-08-21 15:49  FtpDown\StdAfx.cpp
     文件        1076  2007-08-21 15:49  FtpDown\StdAfx.h
     文件        5694  2007-08-21 15:49  FtpDown\res\2.ico
     文件        1078  2007-08-21 15:49  FtpDown\res\FtpDown.ico
     文件         399  2007-08-21 15:49  FtpDown\res\FtpDown.rc2

评论

共有 条评论