| 357 | } |
| 358 | |
| 359 | int FTPClientWrapperSSH::DeleteFile(const char * path) { |
| 360 | int retcode = sftp_unlink(m_sftpsession, path); |
| 361 | |
| 362 | return (retcode == 0)?0:-1; |
| 363 | } |
| 364 | |
| 365 | bool FTPClientWrapperSSH::IsConnected() { |
| 366 | if (!m_connected) |
nothing calls this directly
no outgoing calls
no test coverage detected