Provides FAT activity statistics such as:
The number of dirty sectors on the file system.
The number of sectors written to the FAT table.
Returns the number of dirty sectors in the file allocation table (FAT).
object.DirtySectors
Long.
Read-only.
This example returns the number of dirty sectors in the file allocation table (FAT).
set srv = CreateObject ("ucx:Server")
set statobj = srv.fatstat
print (statobj.Dirtysectors) &" number of sectors were modified in the FAT table"
Returns the number of sectors written to the file allocation table (FAT) since the server was booted.
object.SectorsWritten
Long.
Read-only.
This example returns the number of sectors written to the file allocation table (FAT) since the server was booted.
set srv = CreateObject ("ucx:Server")
set statobj = srv.fatstat
print (statobj.SectorsWritten) &" number of sectors written in the FAT table"