Read the full content of a file. Raise if the file does not exist.
(self, path: str)
| 63 | |
| 64 | @abc.abstractmethod |
| 65 | async def read_file(self, path: str) -> str: |
| 66 | """Read the full content of a file. Raise if the file does not exist.""" |
| 67 | |
| 68 | @abc.abstractmethod |
| 69 | async def write_file(self, path: str, content: str, mode: int | None = None) -> None: |