A PathInfo object that exposes the file type and other file attributes of this path.
(self)
| 834 | |
| 835 | @property |
| 836 | def info(self): |
| 837 | """ |
| 838 | A PathInfo object that exposes the file type and other file attributes |
| 839 | of this path. |
| 840 | """ |
| 841 | try: |
| 842 | return self._info |
| 843 | except AttributeError: |
| 844 | self._info = _Info(str(self)) |
| 845 | return self._info |
| 846 | |
| 847 | def stat(self, *, follow_symlinks=True): |
| 848 | """ |
no test coverage detected