资源简介
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个文件信息
- 上一篇:c++ssk皮肤文件使用方法
- 下一篇:C++ Google地图API源码
相关资源
- 计算机网络课程设计农大socket实现F
- C语言实现基于winsock的ftp客户端程序
- 支持多线程和断点续传的FTP客户端
- 用VC++写的小型FTP服务器源代码
- c语言实现ftp文件传输
- C++FTP服务端客户端
- 基于MFC的ftp客户端80563
- c++FTP上传程序源代码
- FTP服务器MFC源码
- FTP多线程服务器源码
- TFTP服务器端
- 基于MFC的FTP客户端demo
- 基于MFC编写的FTP客户端(使用VS)
- 使用UDP协议进行类FTP协议的实现
- windows下原生c++语言实现的FTP客户端
- FTP-客户端-服务器-源码-设计文档-课程
- 基于MFC的FTP客户端
- C++纯socket写的FTP服务器
- MFC实现FTP客户端
- Windows平台c++对ftp/sftp文件和文件夹上
- VC++ 实现自动升级 漂亮的界面效果
- 用 WinPCAP 监听并分析 FTP 协议并记录
- 简单的FTP系统设计+设计报告
- tftp客户端和服务器
- Linux FTP模拟系统
- 一个基于C++实现的完整进行FTP应用管
- CFtpFileFindftp实现FTP文件遍历
- FTP客户端源程序 上传
- C语言实现TFTP客户端代码
- TFTP_C程序实现
评论
共有 条评论