GetErrorMessage(来自 CInternetException)给了我以下信息:
使用不正确的 ftp 服务器名称:
“错误!无法解析服务器名称或地址”
使用不正确的密码:
ERROR!密码不被允许
使用不正确的用户名:
错误! 密码不被允许 <-----? 不正确的用户名没有单独的消息?这是故意的吗?
try
{
pConnect = sess->GetFtpConnection(host, userName, password, port, FALSE );
}
catch (CInternetException* pEx) //incorrect user name displays incorrect password?
{
TCHAR sz[1024];
pEx->GetErrorMessage(sz, 1024);
printf("ERROR! %s\n", sz);
pEx->Delete();
}