Xbase++
Xbase++
Get the Target of a Symbolic Link
See more FileAccess Examples
Demonstrates how to get the target of a symbolic link.Note: This example requires Chilkat v9.5.0.77 or greater.
Chilkat Xbase++ Downloads
LOCAL oFac
LOCAL cTargetPath
oFac := CreateObject("Chilkat.FileAccess")
cTargetPath := oFac:SymlinkTarget("qa_data/my_symlink")
IF (oFac:LastMethodSuccess != 1)
? "Failed to get symlink target."
oFac:destroy()
RETURN
ENDIF
? "target path = " + cTargetPath
oFac:destroy()