void CTestFTP::FTP_DOWN(CString filename) { CInternetSession session; CFtpConnection *pConnection = NULL; try { // IP주소 ID Password pConnection = session.GetFtpConnection( _T("111.222.33.4"), _T("abcd"), _T("12345")); // 연결이 안됐을 경우 if (!pConnection) { AfxMessageBox(_T("Error")); pConnection = NULL; return; } pConnection->SetCurrentDirectory(_T("/s")); CString str; pConnection->GetCurrentDirector..