C ++我无法将文件上传到FTP服务器

时间:2016-10-22 00:20:00

标签: c++ file-upload ftp

我想使用C ++代码将文件上传到我的FTP服务器,并且我能够使用FileZilla FTP我的服务器。

当我运行我的C ++代码时,它会抛出一个输出" 3" error(GetLastError()函数将此值返回给FtpPutFile()函数

#pragma comment (lib,"wininet.lib")
#include <windows.h>
#include <wininet.h> //for uploadFile function
#include <iostream>
using namespace std;
int main()
{

    HINTERNET hint, hftp;
    hint = InternetOpen("FTP", INTERNET_OPEN_TYPE_PRECONFIG, 0, 0, INTERNET_FLAG_ASYNC);
    hftp = InternetConnect(hint, "MY IP ADRESS", INTERNET_DEFAULT_FTP_PORT, "MY NAME", "MY PASS", INTERNET_SERVICE_FTP, 0, 0);

    if (!FtpPutFile(hftp, "C://Users//Elliot//Desktop//log.txt", "//log.txt", FTP_TRANSFER_TYPE_BINARY, 0))
    {
        cout << "FAIL !" << endl;
        cout << GetLastError() << endl;
    }
    else {
        cout << "file sended !";
    };
    InternetCloseHandle(hftp);
    InternetCloseHandle(hint);

    system("PAUSE");
}

我尝试过的事情:

  • 更改服务器(我制作了新服务器,但结果仍然相同)

  • 控制防火墙

  • 以管理员身份运行

  • 断点(ftpputfile给出错误)

1 个答案:

答案 0 :(得分:0)

错误消息很明确。文件不存在,没有什么可以发送。在继续使用互联网功能之前,您可以使用std::ifstream轻松检查文件的路径。

使用FtpSetCurrentDirectory设置目标目录。在这个例子中,我使用了"public_html",也许你的服务器是不同的。

#include <windows.h>
#include <wininet.h> 
#include <iostream>
#include <string>
#include <fstream>

#pragma comment (lib,"wininet.lib")

using namespace std;

int main()
{
    string file = "C:\\path.txt";
    string site = "www.site.com";
    string user = "username";
    string pass = "password";

    if (!ifstream(file))
    {
        cout << "no file\n";
        return 0;
    }

    HINTERNET hint = InternetOpen(0, INTERNET_OPEN_TYPE_PRECONFIG, 0, 0, 0);
    HINTERNET hftp = InternetConnect(hint, site.c_str(), INTERNET_DEFAULT_FTP_PORT,
        user.c_str(), pass.c_str(), INTERNET_SERVICE_FTP, 0, 0);

    if (FtpSetCurrentDirectory(hftp, "public_html"))
    {
        if (!FtpPutFile(hftp, file.c_str(), "log.txt", FTP_TRANSFER_TYPE_BINARY, 0))
        {
            cout << "FAIL!" << endl;
            cout << GetLastError() << endl;
        }
        else
        {
            cout << "file sended !";
        }
    }
    InternetCloseHandle(hftp);
    InternetCloseHandle(hint);
    return 0;
}