Return the path to which the symbolic link points (as returned by os.readlink()):
Path.readlink()
>>> p = Path('mylink') >>> p.symlink_to('setup.py') >>> p.readlink() PosixPath('setup.py')