资源简介
C++编的简单ftp客户端程序,可以实现上传和下载等功能,还不错,大家分享吧!
代码片段和文件信息
// Ftp.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Ftp.h“
#include “FtpDlg.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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
..A.SHR 9 2007-01-11 14:04 Ftp\Desktop_.ini
文件 21312 2004-04-20 16:07 Ftp\Ftp.aps
文件 1435 2004-04-20 16:15 Ftp\Ftp.clw
文件 2021 2004-04-06 20:12 Ftp\Ftp.cpp
文件 4105 2004-04-06 20:12 Ftp\Ftp.dsp
文件 531 2004-04-06 20:18 Ftp\Ftp.dsw
文件 1291 2004-04-06 20:12 Ftp\Ftp.h
文件 58368 2004-04-20 16:15 Ftp\Ftp.ncb
文件 50688 2004-04-20 16:15 Ftp\Ftp.opt
文件 913 2004-04-20 16:14 Ftp\Ftp.plg
文件 5912 2004-04-07 10:10 Ftp\Ftp.rc
文件 12369 2004-04-20 16:14 Ftp\FtpDlg.cpp
文件 1912 2004-04-06 21:46 Ftp\FtpDlg.h
文件 3522 2004-04-07 10:15 Ftp\ReadMe.txt
..A.SHR 9 2007-01-11 14:04 Ftp\res\Desktop_.ini
文件 1078 2004-04-06 20:12 Ftp\res\Ftp.ico
文件 395 2004-04-06 20:12 Ftp\res\Ftp.rc2
文件 1049 2004-04-06 20:18 Ftp\Resource.h
文件 205 2004-04-06 20:12 Ftp\StdAfx.cpp
文件 1054 2004-04-06 20:12 Ftp\StdAfx.h
目录 0 2009-04-10 10:44 Ftp\res
目录 0 2009-04-10 10:44 Ftp
----------- --------- ---------- ----- ----
168178 22
- 上一篇:银行账户管理系统c++)
- 下一篇:VC++ MFC 的计算器的详细设计
相关资源
- VC++ MFC 的计算器的详细设计
- 银行账户管理系统c++)
- vc++ 和 openGL 做的 3D水波模拟 非常炫
- 分水岭图像分割算法 c++实现
- tcp udp 底层c++封装类windows和linux
- c++c#结构体转换工具
- 简单的Linux下Ftp客户端C语言编写
- 操作系统的模拟实现 C++编写
- VC++实现算数编码
- 贪吃蛇C++ graphics.h
- 利用MATLAB 改写的基于c++的模糊逻辑
- RS232串口通信C++
- 双语版 c++ 程序设计苏小红版 答案
- C++考试题库
- 天津工业大学C++语言期末考试题及答
- A*算法解决八数码问题C++
- 一个Oracle OCI编程接的C++封装,有OCI的
- CRC32和CRC16校验程序C++中用DLL实现
- AES 128位加解密C++源码(加盐)
- c++贪心法的最优服务次序问题
- 自适应模糊PID代码 C++实现
- 数据结构课程设计 排序综合(C++)
- 基于C++的HOSVD源代码
- VIsual C++实现的连连看游戏程序
- Thinking in c++ Annotated Solution Guide 答案
- c++ 最小堆实现
- opencv+udp+c++ 的摄像头实时传输显示源
- 稀疏矩阵运算器(c++)
- C++教程网 大并发高性能高可用可伸缩
- 操作系统课程设计(最佳适应算法的
评论
共有 条评论