FAT_STATISTICS structure (winioctl.h)
Contains statistical information from the FAT file system.
Syntax
typedef struct _FAT_STATISTICS {
DWORD CreateHits;
DWORD SuccessfulCreates;
DWORD FailedCreates;
DWORD NonCachedReads;
DWORD NonCachedReadBytes;
DWORD NonCachedWrites;
DWORD NonCachedWriteBytes;
DWORD NonCachedDiskReads;
DWORD NonCachedDiskWrites;
} FAT_STATISTICS, *PFAT_STATISTICS;
Members
CreateHits
The number of create operations.
SuccessfulCreates
The number of successful create operations.
FailedCreates
The number of failed create operations.
NonCachedReads
The number of read operations that were not cached.
NonCachedReadBytes
The number of bytes read from a file that were not cached.
NonCachedWrites
The number of write operations that were not cached.
NonCachedWriteBytes
The number of bytes written to a file that were not cached.
NonCachedDiskReads
The number of read operations that were not cached. This value includes sub-read operations.
NonCachedDiskWrites
The number of write operations that were not cached. This value includes sub-write operations.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows XP [desktop apps only] |
Minimum supported server | Windows Server 2003 [desktop apps only] |
Header | winioctl.h (include Windows.h) |