(self)
| 108 | _statcache: Stat |
| 109 | |
| 110 | def _stat(self) -> Stat: |
| 111 | try: |
| 112 | return self._statcache |
| 113 | except AttributeError: |
| 114 | try: |
| 115 | self._statcache = self.path.stat() |
| 116 | except error.ELOOP: |
| 117 | self._statcache = self.path.lstat() |
| 118 | return self._statcache |
| 119 | |
| 120 | def dir(self): |
| 121 | return S_ISDIR(self._stat().mode) |