9.6 FATStat Object

Provides FAT activity statistics such as:

9.6.1 DirtySectors property

Returns the number of dirty sectors in the file allocation table (FAT).

Syntax

object.DirtySectors

Type

Long.

Attributes

Read-only.

Example

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"

9.6.2 SectorsWritten property

Returns the number of sectors written to the file allocation table (FAT) since the server was booted.

Syntax

object.SectorsWritten

Type

Long.

Attributes

Read-only.

Example

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"