(self, command: str)
| 108 | @throw CommandException if there is a connection error. |
| 109 | """ |
| 110 | def __eval(self, command: str): |
| 111 | out = self._Base__send_message( |
| 112 | # f"error_reporting(0);" |
| 113 | f"chdir('{self.directory}');" |
| 114 | f"{command}" |
| 115 | f"exit();") |
| 116 | return out |
| 117 | |
| 118 | """ |
| 119 | @brief Check if a file exists on the server. |
no test coverage detected