class

FileStore

const abstract class FileStore : Obj

FileStore represents the storage pool, device, partition, or volume used to store files.

methods freeSpace

Number of bytes unallocated in the store or null if unknown

availSpace

Number of bytes available for use by the application or null if unknown

totalSpace

Total number of bytes in the store or null if unknown

availSpace abstract Int? availSpace()

Number of bytes available for use by the application or null if unknown.

freeSpace abstract Int? freeSpace()

Number of bytes unallocated in the store or null if unknown.

totalSpace abstract Int? totalSpace()

Total number of bytes in the store or null if unknown.

Haxall 4.0.5 ∙ 24-Feb-2026 14:33 EST