A PathInfo object that exposes the file type and other file attributes of this path.
(self)
| 636 | |
| 637 | @property |
| 638 | def info(self): |
| 639 | """ |
| 640 | A PathInfo object that exposes the file type and other file attributes |
| 641 | of this path. |
| 642 | """ |
| 643 | try: |
| 644 | return self._info |
| 645 | except AttributeError: |
| 646 | self._info = PathInfo(self) |
| 647 | return self._info |
| 648 | |
| 649 | def stat(self, *, follow_symlinks=True): |
| 650 | """ |
no test coverage detected