Return the access time in nanoseconds.
(self, *, follow_symlinks=True)
| 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.""" |
| 369 | return self._stat(follow_symlinks=follow_symlinks).st_atime_ns |
| 370 | |
| 371 | def _mod_time_ns(self, *, follow_symlinks=True): |
| 372 | """Return the modify time in nanoseconds.""" |