(self, name: str)
| 122 | @throw CommandException if there is a connection error. |
| 123 | """ |
| 124 | def __file_exists(self, name: str): |
| 125 | out = self.__eval( |
| 126 | f"header('{self.header}: ' . strval(file_exists('{name}')));" |
| 127 | f"exit();" |
| 128 | ) |
| 129 | return out == '1' |
| 130 | |
| 131 | """ |
| 132 | @brief See base class for details. |