|
try
{
//新建连接对象
m_pFTPConnection=m_pIntSession->GetFtpConnection(m_ServerIp,m_UserName,m_UserPwd);
}
catch(CInternetException *pEx)
{
//获取错误信息
TCHAR szError[1024];
if(pEx->GetErrorMessage(szError,1024))
AfxMessageBox(szError);
else
AfxMessageBox("出现意外情况");
pEx->Delete();
m_pFTPConnection=NULL;
return;
}
m_pFTPConnection->PutFile(str_pathname,m_strFileName);
VS2005 VC++智能设备引用了想通过FTP上传文件上面是连接FTP的代码,可是在定义m_pFTPConnection成员变量时就出错,出错代码如下:
1>d:\pda\temp\ftpsendfile\ftpsendfile\FTPSendFileDlg.h(39) : error C2143: syntax error : missing ';' before '*' |
|