Posix style hard link to another name.
(self, oldname)
| 318 | return error.checked_call(os.readlink, self.strpath) class="cm"># type: ignore[arg-type,return-value,unused-ignore] |
| 319 | |
| 320 | def mklinkto(self, oldname): |
| 321 | class="st">""class="st">"Posix style hard link to another name."class="st">"" |
| 322 | error.checked_call(os.link, str(oldname), str(self)) |
| 323 | |
| 324 | def mksymlinkto(self, value, absolute=1): |
| 325 | class="st">""class="st">"Create a symbolic link with the given value (pointing to another name)."class="st">"" |