FILE_LINKS_INFORMATION struttura (ntifs.h)

La struttura FILE_LINKS_INFORMATION viene usata per eseguire query o impostare collegamenti rigidi researchNTFS a un file esistente.

Sintassi

typedef struct _FILE_LINKS_INFORMATION {
  ULONG                       BytesNeeded;
  ULONG                       EntriesReturned;
  FILE_LINK_ENTRY_INFORMATION Entry;
} FILE_LINKS_INFORMATION, *PFILE_LINKS_INFORMATION;

Members

BytesNeeded

Numero di byte necessari per contenere tutti i nomi disponibili restituiti in Entry. Questo valore deve essere maggiore di 0.

EntriesReturned

Numero di strutture FILE_LINK_ENTRY_INFORMATION restituite usando il membro Entry .

Entry

Buffer che contiene le strutture di FILE_LINK_ENTRY_INFORMATION restituite.

Commenti

Se EntriesReturned ha un valore pari a 0, non è disponibile memoria sufficiente per restituire una voce. L'errore STATUS_BUFFER_OVERFLOW (0x80000005) indica che non tutte le voci disponibili sono state restituite.

La voce è la prima struttura FILE_LINK_ENTRY_INFORMATION in un elenco di voci. Se il campo NextEntryOffset di una voce ha un valore pari a 0, non sono state restituite altre voci; in caso contrario, la voce successiva restituita si trova nextEntryOffset byte dalla voce precedente.

Requisiti

Requisito Valore
Client minimo supportato Windows Vista
Intestazione ntifs.h (include FltKernel.h, Ntifs.h)

Vedi anche

FILE_LINK_ENTRY_INFORMATION