Return the POSIX file permissions.
(self, *, follow_symlinks=True)
| 722 | return S_ISLNK(st.st_mode) |
| 723 | |
| 724 | def _posix_permissions(self, *, follow_symlinks=True): |
| 725 | """Return the POSIX file permissions.""" |
| 726 | return S_IMODE(self._stat(follow_symlinks=follow_symlinks).st_mode) |
| 727 | |
| 728 | def _file_id(self, *, follow_symlinks=True): |
| 729 | """Returns the identifier of the file.""" |
no test coverage detected