Return the access time in nanoseconds.
(self, *, follow_symlinks=True)
| 731 | return st.st_dev, st.st_ino |
| 732 | |
| 733 | def _access_time_ns(self, *, follow_symlinks=True): |
| 734 | """Return the access time in nanoseconds.""" |
| 735 | return self._stat(follow_symlinks=follow_symlinks).st_atime_ns |
| 736 | |
| 737 | def _mod_time_ns(self, *, follow_symlinks=True): |
| 738 | """Return the modify time in nanoseconds.""" |