FILE_STANDARD_LINK_INFORMATION structure (ntifs.h)

FILE_STANDARD_LINK_INFORMATION is used to query file link information.

Syntax

typedef struct _FILE_STANDARD_LINK_INFORMATION {
  ULONG   NumberOfAccessibleLinks;
  ULONG   TotalNumberOfLinks;
  BOOLEAN DeletePending;
  BOOLEAN Directory;
} FILE_STANDARD_LINK_INFORMATION, *PFILE_STANDARD_LINK_INFORMATION;

Members

NumberOfAccessibleLinks

Number of non-deleted links to this file.

TotalNumberOfLinks

Total number of links to this file, including links marked for delete.

DeletePending

Boolean value. This field must be set to TRUE to indicate that a file deletion has been requested; otherwise, set to FALSE.

Directory

Set to 1 to indicate that the file is a directory; otherwise, set to FALSE.

Requirements

Requirement Value
Header ntifs.h

See also

NtQueryInformationFile