| 260 | } |
| 261 | |
| 262 | int FTPClientWrapperSSL::MkFile(const char * path) { |
| 263 | MemoryDataSource mdata(NULL, 0, false); |
| 264 | |
| 265 | int retcode = m_client.SendFile(mdata, path); |
| 266 | |
| 267 | return OnReturn((retcode == UTE_SUCCESS)?0:-1); |
| 268 | } |
| 269 | |
| 270 | int FTPClientWrapperSSL::SendFile(const TCHAR * localfile, const char * ftpfile) { |
| 271 |