Whether this path is a symbolic link.
(self)
| 128 | return self._is_file |
| 129 | |
| 130 | def is_symlink(self): |
| 131 | """Whether this path is a symbolic link.""" |
| 132 | if self._is_symlink is None: |
| 133 | self._is_symlink = os.path.islink(self._path) |
| 134 | return self._is_symlink |
| 135 | |
| 136 | |
| 137 | class ReadableLocalPath(_ReadablePath, LexicalPath): |