struttura FILE_LINKS_INFORMATION (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;
Membri
BytesNeeded
Numero di byte necessari per contenere tutti i nomi disponibili restituiti in Voce. Questo valore deve essere maggiore di 0.
EntriesReturned
Numero di strutture FILE_LINK_ENTRY_INFORMATION restituite utilizzando il membro Entry.
Entry
Buffer contenente le strutture FILE_LINK_ENTRY_INFORMATION restituite.
Osservazioni
Se vociReturned ha un valore pari a 0, la memoria disponibile non è sufficiente per restituire una voce. L'errore STATUS_BUFFER_OVERFLOW (0x80000005) indica che non sono state restituite tutte le voci disponibili.
Voce è la prima struttura FILE_LINK_ENTRY_INFORMATION in un elenco di voci. Se la campo NextEntryOffset di una voce ha un valore pari a 0, non vengono restituite altre voci; in caso contrario, la voce successiva restituita si trova NextEntryOffset byte dalla voce precedente.
Fabbisogno
Requisito | Valore |
---|---|
client minimo supportato | Windows Vista |
intestazione | ntifs.h (include FltKernel.h, Ntifs.h) |