// winioctl.h
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;
View the official Win32 API referenceNo description available.
Contains statistical information from the FAT file system.
CreateHitsThe number of create operations.
SuccessfulCreatesThe number of successful create operations.
FailedCreatesThe number of failed create operations.
NonCachedReadsThe number of read operations that were not cached.
NonCachedReadBytesThe number of bytes read from a file that were not cached.
NonCachedWritesThe number of write operations that were not cached.
NonCachedWriteBytesThe number of bytes written to a file that were not cached.
NonCachedDiskReadsThe number of read operations that were not cached. This value includes sub-read operations.
NonCachedDiskWritesThe number of write operations that were not cached. This value includes sub-write operations.