Returns the identifier of the file.
(self, *, follow_symlinks=True)
| 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.""" |
| 364 | st = self._stat(follow_symlinks=follow_symlinks) |
| 365 | return st.st_dev, st.st_ino |
| 366 | |
| 367 | def _access_time_ns(self, *, follow_symlinks=True): |
| 368 | """Return the access time in nanoseconds.""" |