Public 멤버 함수 |
| CFtpClient () |
| ~CFtpClient () |
bool | Connect (const char *pszServerIp, int iServerPort=21, bool bUseUtf8=false) |
| FTP 서버에 연결한다.
|
void | Close () |
| FTP 서버 연결을 종료한다.
|
bool | Login (const char *pszUserId, const char *pszPassWord) |
| FTP 서버에 로그인한다.
|
bool | ChangeFolder (const char *pszPath) |
| FTP 서버의 디렉토리를 변경한다.
|
bool | GetCurrentFolder (std::string &strPath) |
| FTP 서버의 현재 디렉토리를 가져온다.
|
bool | CreateFolder (const char *pszPath) |
| FTP 서버에 새로운 디렉토리를 생성한다.
|
bool | DeleteFolder (const char *pszPath) |
| FTP 서버에서 디렉토리를 삭제한다.
|
bool | Upload (const char *pszLocalPath) |
| 파일을 FTP 서버로 업로드한다.
|
bool | Download (const char *pszFileName, const char *pszLocalPath) |
| FTP 서버에서 파일을 다운로드한다.
|
bool | List (FTP_FILE_LIST &clsList) |
| FTP 서버의 현재 폴더에 존재하는 파일/폴더 리스트를 가져온다.
|