• 大小: 3.54MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-13
  • 语言: 其他
  • 标签: windows  xp  

资源简介

开发了在windows xp下的FTP客户端,FTP服务器基于VxWorks5.5平台,ftpdlib.c文件需要从网上的论坛里下载。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “FTPClient.h“
#include “FTPClientDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CFTPClientApp

BEGIN_MESSAGE_MAP(CFTPClientApp CWinApp)
//{{AFX_MSG_MAP(CFTPClientApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CFTPClientApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CFTPClientApp object

CFTPClientApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CFTPClientApp initialization

BOOL CFTPClientApp::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

CFTPClientDlg 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;
}

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

     文件    3752960  2011-12-10 17:31  FTPClient\Debug\FTPClient.bsc

     文件     114746  2011-12-10 17:31  FTPClient\Debug\FTPClient.exe

     文件     302584  2011-12-10 17:31  FTPClient\Debug\FTPClient.ilk

     文件      17251  2011-12-10 17:28  FTPClient\Debug\FTPClient.obj

     文件    6879832  2011-12-10 15:48  FTPClient\Debug\FTPClient.pch

     文件     435200  2011-12-10 17:31  FTPClient\Debug\FTPClient.pdb

     文件       3024  2011-12-10 17:26  FTPClient\Debug\FTPClient.res

     文件          0  2011-12-10 17:28  FTPClient\Debug\FTPClient.sbr

     文件      56142  2011-12-10 17:31  FTPClient\Debug\FTPClientDlg.obj

     文件          0  2011-12-10 17:31  FTPClient\Debug\FTPClientDlg.sbr

     文件     105508  2011-12-10 15:48  FTPClient\Debug\StdAfx.obj

     文件    1374964  2011-12-10 15:48  FTPClient\Debug\StdAfx.sbr

     文件     222208  2011-12-10 17:31  FTPClient\Debug\vc60.idb

     文件     389120  2011-12-10 17:31  FTPClient\Debug\vc60.pdb

     文件      36184  2011-12-10 17:26  FTPClient\FTPClient.aps

     文件       1566  2011-12-10 17:28  FTPClient\FTPClient.clw

     文件       2105  2011-12-10 14:08  FTPClient\FTPClient.cpp

     文件       4214  2011-12-10 15:49  FTPClient\FTPClient.dsp

     文件        524  2011-12-06 21:35  FTPClient\FTPClient.dsw

     文件       1357  2011-12-06 21:35  FTPClient\FTPClient.h

     文件     132096  2011-12-10 17:31  FTPClient\FTPClient.ncb

     文件      56832  2011-12-10 17:31  FTPClient\FTPClient.opt

     文件       1490  2011-12-10 17:31  FTPClient\FTPClient.plg

     文件       6049  2011-12-10 17:26  FTPClient\FTPClient.rc

     文件       9928  2011-12-10 17:31  FTPClient\FTPClientDlg.cpp

     文件       1966  2011-12-10 17:28  FTPClient\FTPClientDlg.h

     文件       3633  2011-12-06 21:35  FTPClient\ReadMe.txt

     文件       1078  2011-12-06 21:35  FTPClient\res\FTPClient.ico

     文件        401  2011-12-06 21:35  FTPClient\res\FTPClient.rc2

     文件       1055  2011-12-10 17:26  FTPClient\resource.h

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

评论

共有 条评论