• 大小: 8.97MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-04
  • 语言: C/C++
  • 标签: ftp  

资源简介

FTP客户端与服务器的MFC实现,C、C++源代码

资源截图

代码片段和文件信息

// MyFtp.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “MyFtp.h“
#include “MyFtpDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CFTPApp

BEGIN_MESSAGE_MAP(CFTPApp CWinApp)
//{{AFX_MSG_MAP(CFTPApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CFTPApp construction

CFTPApp::CFTPApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CFTPApp object

CFTPApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CFTPApp initialization

BOOL CFTPApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CFTPDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

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

     文件      62464  2012-05-06 22:16  FTPCLIENT\Debug\MyFtp.exe

     文件      52068  2012-05-06 22:16  FTPCLIENT\MyFtp.aps

     文件       1937  2012-04-10 19:44  FTPCLIENT\MyFtp.clw

     文件       2027  2011-01-12 22:34  FTPCLIENT\MyFtp.cpp

     文件       4288  2011-01-12 23:21  FTPCLIENT\MyFtp.dsp

     文件        535  2011-01-15 15:50  FTPCLIENT\MyFtp.dsw

     文件       1303  2011-01-12 22:17  FTPCLIENT\MyFtp.h

     文件   17968128  2012-05-06 22:25  FTPCLIENT\MyFtp.ncb

     文件      55808  2012-04-11 08:48  FTPCLIENT\MyFtp.opt

     文件        244  2012-04-11 08:47  FTPCLIENT\MyFtp.plg

     文件       6301  2012-05-06 22:16  FTPCLIENT\MyFtp.rc

     文件        875  2012-05-06 22:25  FTPCLIENT\MyFtp.sln

    ..A..H.     30720  2012-05-06 22:25  FTPCLIENT\MyFtp.suo

     文件       7522  2012-05-06 15:42  FTPCLIENT\MyFtp.vcproj

     文件       1413  2012-05-06 22:25  FTPCLIENT\MyFtp.vcproj.zzqpc-PC.zzqpc.user

     文件      14233  2012-05-06 19:13  FTPCLIENT\MyFtpDlg.cpp

     文件       2437  2011-01-13 01:37  FTPCLIENT\MyFtpDlg.h

     文件       3561  2004-07-08 00:00  FTPCLIENT\ReadMe.txt

     文件       1078  2004-07-08 00:00  FTPCLIENT\res\MyFtp.ico

     文件        397  2004-07-08 00:00  FTPCLIENT\res\MyFtp.rc2

     文件       7406  2004-07-08 00:00  FTPCLIENT\res\n13folder_close.ico

     文件       4710  2004-07-08 00:00  FTPCLIENT\res\NoIconDoc.ico

     文件       1717  2011-01-13 01:42  FTPCLIENT\resource.h

     文件        209  2004-07-08 00:00  FTPCLIENT\StdAfx.cpp

     文件       1097  2004-07-08 00:00  FTPCLIENT\StdAfx.h

     文件       1328  2012-05-06 19:09  FTPSERVER\AboutDlg.cpp

     文件       1108  2005-05-29 22:44  FTPSERVER\AboutDlg.h

     文件       1757  2012-05-06 19:09  FTPSERVER\AddUserDlg.cpp

     文件       1220  2005-05-29 22:44  FTPSERVER\AddUserDlg.h

     文件      35941  2012-05-06 19:09  FTPSERVER\ApplicationDlg.cpp

............此处省略89个文件信息

评论

共有 条评论