Click here to Skip to main content
15,891,905 members
Articles / Desktop Programming / MFC

FTP Client Class

Rate me:
Please Sign up or sign in to vote.
4.85/5 (80 votes)
8 Dec 2012CPOL4 min read 774.2K   48.2K   246  
A non-MFC class to encapsulate the FTP protocol.
#pragma once

#include "FTPClient.h"
#include "FTPFileTreeCtrl.h"

namespace nsFTP
{
namespace nsView
{

class CFTPBrowseForFileAndFolderDlg : public CDialog
{
   DECLARE_MESSAGE_MAP()
   DECLARE_DYNAMIC(CFTPBrowseForFileAndFolderDlg)
   enum { IDD = IDD_FTP_DLG_BROWSE };
public:
   CFTPBrowseForFileAndFolderDlg(CWnd* pParent = NULL);
   virtual ~CFTPBrowseForFileAndFolderDlg();

   INT_PTR DoModal(nsFTP::CFTPClient* pFTP, bool fFiles=false);
   CString GetFullPath() const;

protected:
   virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
   virtual BOOL OnInitDialog();
   void    OnOK();

private:
   nsFTP::CFTPClient*               m_pFTP;
   nsFTP::nsView::CFTPFileTreeCtrl  m_ctrlFtpTree;
   CString                          m_cszFullPath;
   bool                             m_fFiles;
};

};
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions