(self, file: str)
| 43 | @throw CommandException if there is a connection error. |
| 44 | """ |
| 45 | def __file_exists(self, file: str): |
| 46 | res = self.__eval( |
| 47 | f"r.headers['{self.header}']=" |
| 48 | f"int(__import__('os').path.exists('{file}'));") |
| 49 | return res == '1' |
| 50 | |
| 51 | """ |
| 52 | @brief See base class for details. |