Return the result of the stat() system call on this path, like os.stat() does.
(self, *, follow_symlinks=True)
| 845 | return self._info |
| 846 | |
| 847 | def stat(self, *, follow_symlinks=True): |
| 848 | """ |
| 849 | Return the result of the stat() system call on this path, like |
| 850 | os.stat() does. |
| 851 | """ |
| 852 | return os.stat(self, follow_symlinks=follow_symlinks) |
| 853 | |
| 854 | def lstat(self): |
| 855 | """ |
no outgoing calls