Return a new path which contains no symbolic links.
(self)
| 1016 | old.chdir() |
| 1017 | |
| 1018 | def realpath(self): |
| 1019 | """Return a new path which contains no symbolic links.""" |
| 1020 | return self.__class__(os.path.realpath(self.strpath)) |
| 1021 | |
| 1022 | def atime(self): |
| 1023 | """Return last access time of the path.""" |