| 220 | } |
| 221 | |
| 222 | int FTPClientWrapperSSL::Cwd(const char * path) { |
| 223 | int retcode = m_client.ChDir(path); |
| 224 | |
| 225 | return OnReturn((retcode == UTE_SUCCESS)?0:-1); |
| 226 | } |
| 227 | |
| 228 | int FTPClientWrapperSSL::Pwd(char* buf, size_t size) { |
| 229 | int retcode = m_client.GetCurDir(buf, size); |