| 220 | } |
| 221 | |
| 222 | int FTPClientWrapperSSH::RmDir(const char * path) { |
| 223 | int retcode = sftp_rmdir(m_sftpsession, path); |
| 224 | |
| 225 | return OnReturn((retcode == 0)?0:-1); |
| 226 | } |
| 227 | |
| 228 | |
| 229 | int FTPClientWrapperSSH::MkFile(const char * path) { |
nothing calls this directly
no outgoing calls
no test coverage detected