Delphi ActiveX
Delphi ActiveX
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 Delphi ActiveX Downloads
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB;
...
procedure TForm1.Button1Click(Sender: TObject);
var
fac: TCkFileAccess;
targetPath: WideString;
begin
fac := TCkFileAccess.Create(Self);
targetPath := fac.SymlinkTarget('qa_data/my_symlink');
if (fac.LastMethodSuccess <> 1) then
begin
Memo1.Lines.Add('Failed to get symlink target.');
Exit;
end;
Memo1.Lines.Add('target path = ' + targetPath);
end;