资源简介
设计一个ftp客户端可以实现文件的上传和下载的功能
代码片段和文件信息
// MyFtp.cpp : Defines the class behaviors for the application.
// Download by http://www.codefans.net
#include “stdafx.h“
#include “MyFtp.h“
#include “MyFtpDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMyFtpApp
BEGIN_MESSAGE_MAP(CMyFtpApp CWinApp)
//{{AFX_MSG_MAP(CMyFtpApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMyFtpApp construction
CMyFtpApp::CMyFtpApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMyFtpApp object
CMyFtpApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMyFtpApp initialization
BOOL CMyFtpApp::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
CMyFtpDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2012-06-20 15:15 ftp客户端的设计与实现\
目录 0 2012-02-20 11:01 ftp客户端的设计与实现\MyFtp\
目录 0 2011-12-30 21:08 ftp客户端的设计与实现\MyFtp\Debug\
文件 5293056 2011-12-30 11:06 ftp客户端的设计与实现\MyFtp\Debug\MyFtp.bsc
文件 135237 2011-12-30 11:06 ftp客户端的设计与实现\MyFtp\Debug\MyFtp.exe
文件 291852 2011-12-30 11:06 ftp客户端的设计与实现\MyFtp\Debug\MyFtp.ilk
文件 30681 2011-12-29 14:58 ftp客户端的设计与实现\MyFtp\Debug\MyFtp.obj
文件 7721528 2011-12-29 14:58 ftp客户端的设计与实现\MyFtp\Debug\MyFtp.pch
文件 435200 2011-12-30 11:06 ftp客户端的设计与实现\MyFtp\Debug\MyFtp.pdb
文件 16084 2011-12-29 13:10 ftp客户端的设计与实现\MyFtp\Debug\MyFtp.res
文件 0 2011-12-29 14:58 ftp客户端的设计与实现\MyFtp\Debug\MyFtp.sbr
文件 79892 2011-12-30 11:06 ftp客户端的设计与实现\MyFtp\Debug\MyFtpDlg.obj
文件 0 2011-12-30 11:06 ftp客户端的设计与实现\MyFtp\Debug\MyFtpDlg.sbr
文件 110420 2011-12-29 14:58 ftp客户端的设计与实现\MyFtp\Debug\StdAfx.obj
文件 1436823 2011-12-29 14:58 ftp客户端的设计与实现\MyFtp\Debug\StdAfx.sbr
文件 345088 2012-02-20 11:00 ftp客户端的设计与实现\MyFtp\Debug\vc60.idb
文件 389120 2011-12-30 11:06 ftp客户端的设计与实现\MyFtp\Debug\vc60.pdb
文件 50128 2002-06-27 06:15 ftp客户端的设计与实现\MyFtp\MyFtp.aps
文件 2586 2002-06-27 07:30 ftp客户端的设计与实现\MyFtp\MyFtp.clw
文件 2085 2010-04-16 21:39 ftp客户端的设计与实现\MyFtp\MyFtp.cpp
文件 4288 2011-12-29 15:39 ftp客户端的设计与实现\MyFtp\MyFtp.dsp
文件 535 2002-06-24 00:27 ftp客户端的设计与实现\MyFtp\MyFtp.dsw
文件 1313 2002-06-24 00:27 ftp客户端的设计与实现\MyFtp\MyFtp.h
文件 91136 2012-02-20 11:01 ftp客户端的设计与实现\MyFtp\MyFtp.ncb
文件 48640 2012-02-20 11:01 ftp客户端的设计与实现\MyFtp\MyFtp.opt
文件 244 2012-02-20 11:00 ftp客户端的设计与实现\MyFtp\MyFtp.plg
文件 7433 2002-06-27 06:15 ftp客户端的设计与实现\MyFtp\MyFtp.rc
文件 12197 2011-12-30 11:05 ftp客户端的设计与实现\MyFtp\MyFtpDlg.cpp
文件 2603 2010-04-16 21:39 ftp客户端的设计与实现\MyFtp\MyFtpDlg.h
文件 3561 2002-06-24 00:27 ftp客户端的设计与实现\MyFtp\ReadMe.txt
目录 0 2011-12-30 21:08 ftp客户端的设计与实现\MyFtp\res\
............此处省略7个文件信息
- 上一篇:器件应力降额总规范
- 下一篇:2019下半年软件设计师下午题答案.pdf.zip
评论
共有 条评论