Return stat info for the path.
(self)
| 68 | return await asyncio.to_thread(self._path.is_symlink) |
| 69 | |
| 70 | async def stat(self) -> os.stat_result: |
| 71 | """Return stat info for the path.""" |
| 72 | return await asyncio.to_thread(self._path.stat) |
| 73 | |
| 74 | async def lstat(self) -> os.stat_result: |
| 75 | """Return lstat info for the path (doesn't follow symlinks).""" |
no outgoing calls