MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / readlink

Method readlink

tools/python-3.11.9-amd64/Lib/pathlib.py:1081–1087  ·  view source on GitHub ↗

Return the path to which the symbolic link points.

(self)

Source from the content-addressed store, hash-verified

1079 return f.write(data)
1080
1081 def readlink(self):
1082 """
1083 Return the path to which the symbolic link points.
1084 """
1085 if not hasattr(os, "readlink"):
1086 raise NotImplementedError("os.readlink() not available on this system")
1087 return self._from_parts((os.readlink(self),))
1088
1089 def touch(self, mode=0o666, exist_ok=True):
1090 """

Callers 13

copyfileFunction · 0.80
_copytreeFunction · 0.80
moveFunction · 0.80
gettarinfoMethod · 0.80
lookupmoduleMethod · 0.80
_follow_symlinksFunction · 0.80
_joinrealpathFunction · 0.80
copy_treeFunction · 0.80
copy_treeFunction · 0.80
visitFunction · 0.80
mkrealfileFunction · 0.80
mkrealdirFunction · 0.80

Calls 1

_from_partsMethod · 0.80

Tested by

no test coverage detected