System.SysUtils.TSymLinkRec
Delphi
TSymLinkRec = record
C++
struct DECLSPEC_DRECORD TSymLinkRec
{
private:
    System::TDateTime __fastcall GetTimeStamp();
public:
    TFileName TargetName;
    int Attr;
    __int64 Size;
    Winapi::Windows::TWin32FindData FindData;
    __property System::TDateTime TimeStamp = {read=GetTimeStamp};
};
Properties
| Type | Visibility | Source | Unit | Parent | 
|---|---|---|---|---|
| record struct | public | System.SysUtils.pas System.SysUtils.hpp | System.SysUtils | System.SysUtils | 
Description
TSymLinkRec is used to store information about symbolic link files.
TSymLinkRec defines a data structure used to store information about symbolic link files. Symlink stands for symbolic link file, which is a special type of file containing a reference to another file or directory in the form of an absolute or relative path.
Note: The implementation of symbolic links on Windows and MAC OS is different.
Note: Microsoft added support for symbolic link files starting with Windows Vista.