#include <string>
#include <SFML/Network.hpp>
using namespace std;void loginftp()
{
// TODO: 在此添加控件通知处理程序代码
sf::IpAddress address = "127.0.0.1";
sf::Ftp server;
sf::Ftp::Response connectResponse = server.connect(address);
if (!connectResponse.isOk())
{
//连接失败
} // Ask for user name and password
std::string user = "test", password = "5482";
// Login to the server
sf::Ftp::Response loginResponse = server.login(user, password);
if (!loginResponse.isOk())
{
//登录失败
} server.disconnect();
}

ftp日志:

c++ SFML 连接ftp_c++

此时可以看出登录成功