`

C++实现向FTP上传文件

    博客分类:
  • C++
 
阅读更多
连接

 

    CInternetSession *m_pInetsession;  
    CFtpConnection *m_pFtpConnection;  
    m_pInetsession=new CInternetSession(AfxGetAppName(),1,PRE_CONFIG_INTERNET_ACCESS);  
    try  
    {  
         m_pFtpConnection=m_pInetsession->GetFtpConnection("127.0.0.1",NULL,NULL,38);  
         MessageBox("连接成功");  
    }  
    catch(CInternetException *pEx)  
    {  
        TCHAR szError[1024];  
        if(pEx->GetErrorMessage(szError,1024))  
            AfxMessageBox(szError);  
        else  
            AfxMessageBox("There was an exception");  
        pEx->Delete();  
        m_pFtpConnection=NULL;  
        return;  
    }  

 


下载文件

BOOL GetFile( LPCTSTRpstrRemoteFile, LPCTSTRpstrLocalFile, BOOLbFailIfExists = TRUE, DWORDdwAttributes = FILE_ATTRIBUTE_NORMAL, DWORDdwFlags = FTP_TRANSFER_TYPE_BINARY, DWORDdwContext = 1 );

pstrRemoteFile

A pointer to a null-terminated string containing the name of a file to retrieve from the FTP server.

pstrLocalFile

A pointer to a null-terminated string containing the name of the file to create on the local system.

bFailIfExists

Indicates whether the file name may already be used by an existing file. If the local file name already exists, and this parameter isTRUE,GetFile fails. Otherwise, GetFile will erase the existing copy of the file.

dwAttributes

Indicates the attributes of the file. This can be any combination of the following FILE_ATTRIBUTE_* flags.

  • FILE_ATTRIBUTE_ARCHIVE   The file is an archive file. Applications use this attribute to mark files for backup or removal.

  • FILE_ATTRIBUTE_COMPRESSED   The file or directory is compressed. For a file, compression means that all of the data in the file is compressed. For a directory, compression is the default for newly created files and subdirectories.

  • FILE_ATTRIBUTE_DIRECTORY   The file is a directory.

  • FILE_ATTRIBUTE_NORMAL   The file has no other attributes set. This attribute is valid only if used alone. All other file attributes override FILE_ATTRIBUTE_NORMAL:

  • FILE_ATTRIBUTE_HIDDEN   The file is hidden. It is not to be included in an ordinary directory listing.

  • FILE_ATTRIBUTE_READONLY   The file is read only. Applications can read the file but cannot write to it or delete it.

  • FILE_ATTRIBUTE_SYSTEM   The file is part of or is used exclusively by the operating system.

  • FILE_ATTRIBUTE_TEMPORARY   The file is being used for temporary storage. Applications should write to the file only if absolutely necessary. Most of the file’s data remains in memory without being flushed to the media because the file will soon be deleted.

dwFlags

Specifies the conditions under which the transfer occurs. This parameter can be any of thedwFlags values described inFtpGetFile in thePlatform SDK.

dwContext

The context identifier for the file retrieval. See Remarks for more information aboutdwContext.

[cpp] view plain copy print ?
  1. m_pFtpConnection->GetFile("1.txt","D:\\1.txt",false,FILE_ATTRIBUTE_NORMAL,FTP_TRANSFER_TYPE_BINARY,1)  
删除服务器上的文件

BOOL Remove( LPCTSTR pstrFileName );

Return Value

Nonzero if successful; otherwise 0. If the call fails, the Win32 functionGetLastError may be called to determine the cause of the error.

Parameters

pstrFileName

A pointer to a string containing the file name to remove.

[cpp] view plain copy print ?
  1. m_pFtpConnection->Remove("1.txt")  
上传文件

BOOL PutFile( LPCTSTR pstrLocalFile, LPCTSTRpstrRemoteFile, DWORDdwFlags = FTP_TRANSFER_TYPE_BINARY, DWORDdwContext = 1 );

Return Value

Nonzero if successful; otherwise 0. If the call fails, the Win32 functionGetLastError may be called to determine the cause of the error.

Parameters

pstrLocalFile

A pointer to a string containing the name of the file to send from the local system.

pstrRemoteFile

A pointer to a string containing the name of the file to create on the FTP server.

dwFlags

Specifies the conditions under which the transfer of the file occurs. Can be any of the FTP_TRANSFER_* constants described inOpenFile.

dwContext

The context identifier for placing the file. See Remarks for more information aboutdwContext.

[cpp] view plain copy print ?
  1. m_pFtpConnection->PutFile("D:\\3.txt","3.txt",FTP_TRANSFER_TYPE_BINARY,1) 

 

分享到:
评论

相关推荐

    C++ libcurl ftp上传文件

    FTP上传文件的核心在于`curl_easy_setopt()`函数,它可以设置各种选项来定制FTP请求。首先,设置URL为FTP服务器的地址: ```cpp curl_easy_setopt(curl, CURLOPT_URL, "ftp://ftp.example.com/path/to/file"); ``` ...

    c++ 实现 ftp上传 下载

    通过以上步骤,你可以在Windows环境中使用C++实现FTP上传和下载功能。请注意,这只是一个基础的实现,实际应用可能需要处理更复杂的场景,如SSL/TLS加密、错误重试、多线程上传下载等。对于这些高级功能,libcurl...

    实现Qt-FTP上传文件

    在本文中,我们将深入探讨如何使用Qt库与libcurl库结合,实现在C++应用程序中进行FTP文件上传的功能。Qt是一个强大的跨平台开发框架,它提供了丰富的GUI组件和网络功能,而libcurl则是一个用于处理多种互联网协议的...

    c++实现ftp list所有文件与目录 & ftp down所有文件

    在本文中,我们将深入探讨如何使用C++编程语言结合libcurl库来实现FTP(File Transfer Protocol)服务的两个主要功能:列出所有文件和目录,并下载所有文件。FTP是一种广泛使用的互联网协议,用于在服务器和客户端...

    ubuntu linux 下C语言实现FTP批量文件上传

    在ubuntu linux下实现的FTP文件上传,程序自动监听目录下是否有图片文件,有文件则自动通过FTP上传到服务器端,同时删除目录下的文件,实现了批量文件上传,自动重命名文件,程序经测试,运行稳定。

    FTP文件上传和下载管理类(C++)

    在C++中实现FTP功能,可以帮助开发者实现在本地计算机与远程服务器之间的文件上传和下载。 FTPManager类是这个压缩包的核心,它封装了FTP协议的相关操作,使得在C++程序中使用FTP变得更加简单。FTPManager.cpp和...

    Windows平台c++对ftp/sftp文件和文件夹下载上传工程源代码

    总结,这个Windows平台的C++ FTP/SFTP文件和文件夹下载上传工程源代码项目,提供了完整的客户端功能,利用LibSSH2库实现了安全的文件传输,并经过了严格的测试,是开发人员进行相关功能开发的一个宝贵资源。

    curl实现ftp上传下载

    FTP上传涉及到将本地文件发送到远程FTP服务器。使用libcurl,我们可以通过以下步骤实现: 1. **初始化libcurl**:创建一个`CURL`指针,并调用`curl_global_init()`初始化全局设置。 2. **设置URL**:使用`curl_...

    C++ 简单的Ftp文件传输

    3. **FTP命令和响应**:FTP协议定义了一系列命令和响应代码,如`USER`(提供用户名)、`PASS`(提供密码)、`STOR`(上传文件)、`RETR`(下载文件)等。客户端发送这些命令,服务器返回相应的响应。 4. **数据传输...

    C++实现http/https/ftp文件下载

    7. **FTP协议处理**:FTP协议有多种命令,如USER/PASS用于认证,STOR/RETR用于文件上传和下载,需要正确实现FTP命令交互。 8. **文件I/O操作**:下载的数据需要写入本地文件,涉及文件打开、读写、关闭等操作,注意...

    c++实现Ftp服务器

    FTP服务器可以实现文件上传、下载、删除、创建目录等操作。 知识点三:C++实现FTP服务器 使用C++实现FTP服务器需要使用Winsock库来实现网络通信。首先,需要启动Winsock库,协商Winsock的版本支持并分配必要的资源...

    FTP简单文件传输实现 c++

    登录成功后,可以使用"PASV"或"PORT"命令设置数据连接模式,接着发送"STOR"(上传文件)或"RETR"(下载文件)命令,并打开数据连接进行文件传输。"LIST"命令用于获取目录列表,通常会返回一个包含文件和目录信息的...

    用visual c++ 编写的ftp程序代码

    3. **FTP命令交互**:FTP协议定义了一系列的命令,如`LIST`(列出目录内容)、`RETR`(下载文件)、`STOR`(上传文件)、`CWD`(改变当前工作目录)等。在Visual C++中,可以使用`send`函数将这些命令发送到服务器,...

    FTP 文件上传下载 C++

    FTP的常用命令包括登录(USER/PASS)、改变目录(CWD)、列出目录内容(LIST)、上传文件(STOR)、下载文件(RETR)等。 在C++中实现FTP功能,需要对网络编程有一定的了解,特别是套接字(socket)编程。首先,你...

    c++ ftp文件传输

    C++作为一门强大的编程语言,可以被用来实现FTP客户端或服务器端的程序,以支持文件的上传、下载和其他相关操作。在这个名为“c++ ftp文件传输”的项目中,开发者创建了一个功能完备的FTP文件传输解决方案,旨在方便...

    visual c++ 支持多线程文件上传文件的FTP客户端.zip

    `MTOPERATION.H`这个文件很可能包含了多线程操作的类定义,可能是一个线程池或者专门处理FTP上传的线程类。在C++中,可以使用`<thread>`库或Windows API(如`CreateThread`)来创建和管理线程。 `FTPFILE.H`和`...

    Qt5.8用FTP实现文件上传和下载(带进度条)

    要实现FTP上传,我们首先需要建立一个FTP连接。这可以通过创建一个QNetworkAccessManager实例并调用其get或post方法完成。对于FTP,我们需要使用FTP URL,如“ftp://username:password@server:port/path”。然后,...

    C++实现的FTP服务器

    在windows平台下使用C++,MFC框架实现了FTP协议的服务端程序。支持客户端的文件下载,上传,删除等常用FTP命令的响应。使用多线程技术,允许多个客户端同时连接。实时记录显示服务器和客户端交互的状态变化。支持...

    windows下c++语言实现的FTP客户端(boost方式)

    FTP客户端实现上传下载功能: 该代码文件是在vs2010下编译并运行,使用者安装boost库并配置,即可直接使用,main函数写了一个上传的小demo,使用者可参考使用上传、下载、压缩等功能的使用。 1.本程序支持文件夹嵌套...

    使用QT实现文件上传和下载----ftp服务器

    FTP上传文件的实现可以使用QNetworkAccessManager的put()函数。假设我们有一个本地文件`localFilePath`,我们希望上传到服务器的`remoteFilePath`: ```cpp QFile localFile(localFilePath); if (!localFile.open...

Global site tag (gtag.js) - Google Analytics