Return last modification time of the path.
(self)
| 828 | return self.stat().size |
| 829 | |
| 830 | def mtime(self) -> float: |
| 831 | """Return last modification time of the path.""" |
| 832 | return self.stat().mtime |
| 833 | |
| 834 | def copy(self, target, mode=False, stat=False): |
| 835 | """Copy path to target. |