Return True if the path is a directory.
(self)
| 60 | return await asyncio.to_thread(self._path.is_file) |
| 61 | |
| 62 | async def is_dir(self) -> bool: |
| 63 | """Return True if the path is a directory.""" |
| 64 | return await asyncio.to_thread(self._path.is_dir) |
| 65 | |
| 66 | async def is_symlink(self) -> bool: |
| 67 | """Return True if the path is a symbolic link.""" |
no outgoing calls