estructura FILE_LINK_ENTRY_INFORMATION (ntifs.h)

La estructura de FILE_LINK_ENTRY_INFORMATION describe un único vínculo físico NTFS a un archivo existente.

Sintaxis

typedef struct _FILE_LINK_ENTRY_INFORMATION {
  ULONG    NextEntryOffset;
  LONGLONG ParentFileId;
  ULONG    FileNameLength;
  WCHAR    FileName[1];
} FILE_LINK_ENTRY_INFORMATION, *PFILE_LINK_ENTRY_INFORMATION;

Miembros

NextEntryOffset

Desplazamiento, en bytes, hasta la siguiente estructura de FILE_LINK_ENTRY_INFORMATION o 0 si la estructura actual es la última estructura FILE_LINK_ENTRY_INFORMATION .

ParentFileId

Identificador del directorio primario del vínculo.

FileNameLength

Longitud, en caracteres, del filename del vínculo.

FileName[1]

Nombre del vínculo.

Requisitos

Requisito Value
Cliente mínimo compatible Windows Vista
Encabezado ntifs.h (incluya FltKernel.h, Ntifs.h)

Consulte también

FILE_LINKS_INFORMATION