Return the POSIX file permissions.
(self, *, follow_symlinks=True)
| 356 | return self._lstat_result |
| 357 | |
| 358 | def _posix_permissions(self, *, follow_symlinks=True): |
| 359 | """Return the POSIX file permissions.""" |
| 360 | return S_IMODE(self._stat(follow_symlinks=follow_symlinks).st_mode) |
| 361 | |
| 362 | def _file_id(self, *, follow_symlinks=True): |
| 363 | """Returns the identifier of the file.""" |