struttura FILE_STANDARD_INFO (winbase.h)

Riceve informazioni estese per il file. Usato per gli handle di file. Usare solo quando si chiama GetFileInformationByHandleEx.

Sintassi

typedef struct _FILE_STANDARD_INFO {
  LARGE_INTEGER AllocationSize;
  LARGE_INTEGER EndOfFile;
  DWORD         NumberOfLinks;
  BOOLEAN       DeletePending;
  BOOLEAN       Directory;
} FILE_STANDARD_INFO, *PFILE_STANDARD_INFO;

Members

AllocationSize

Quantità di spazio allocata per il file.

EndOfFile

Fine del file.

NumberOfLinks

Numero di collegamenti al file.

DeletePending

TRUE se il file nella coda di eliminazione; in caso contrario, false.

Directory

TRUE se il file è una directory; in caso contrario, false.

Requisiti

Requisito Valore
Client minimo supportato Windows Vista [app desktop | App UWP]
Server minimo supportato Windows Server 2008 [app desktop | App UWP]
Intestazione winbase.h (include Windows.h)
Componente ridistribuibile Windows SDK in Windows Server 2003 e Windows XP.

Vedi anche

FILE_INFO_BY_HANDLE_CLASS

GetFileInformationByHandleEx