type

FileStore

src abstract const class FileStore : Obj

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

methods

availSpace

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

freeSpace

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

totalSpace

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

Slot Details

availSpace

src abstract Int? availSpace()

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

freeSpace

src abstract Int? freeSpace()

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

totalSpace

src abstract Int? totalSpace()

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