Executes the FTP command HELP This command shall cause the server to send helpful information regarding its implementation status over the control connection to the user. The command may take an argument (e.g., any command name) and return more specific information as a response. The reply is type 211 or 214. It is suggested that HELP be allowed before entering a USER command. The server may use
| 1634 | /// @param[in] strTopic Topic of the requested help. |
| 1635 | /// @return see return values of CFTPClient::SimpleErrorCheck |
| 1636 | int CFTPClient::Help(const tstring& strTopic) const |
| 1637 | { |
| 1638 | CReply Reply; |
| 1639 | if( !SendCommand(CCommand::HELP(), strTopic, Reply) ) |
| 1640 | return FTP_ERROR; |
| 1641 | return SimpleErrorCheck(Reply); |
| 1642 | } |
| 1643 | |
| 1644 | /// Executes the FTP command DELE (DELETE) |
| 1645 | /// This command causes the file specified in the pathname to be deleted at the |
nothing calls this directly
no outgoing calls
no test coverage detected