Append *content* to a file, creating parent directories if needed.
(self, path: str, content: str, mode: int | None = None)
| 71 | |
| 72 | @abc.abstractmethod |
| 73 | async def append_file(self, path: str, content: str, mode: int | None = None) -> None: |
| 74 | """Append *content* to a file, creating parent directories if needed.""" |
| 75 | |
| 76 | @abc.abstractmethod |
| 77 | async def exists(self, path: str) -> bool: |