(self, command: str)
| 27 | @throw CommandException if there is a connection error. |
| 28 | """ |
| 29 | def __eval(self, command: str): |
| 30 | res = self._Base__send_message( |
| 31 | f"{command}" |
| 32 | ) |
| 33 | return res |
| 34 | |
| 35 | """ |
| 36 | @brief Check if a file exists on the server. |
no test coverage detected