System.SysUtils.TSymLinkRec

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TSymLinkRec = record

C++

struct DECLSPEC_DRECORD TSymLinkRec
{
private:
    System::TDateTime __fastcall GetTimeStamp();
public:
    TFileName TargetName;
    int Attr;
    __int64 Size;
    _WIN32_FIND_DATAW 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.


See Also