« Back to Product

Documentation

Sys_GetHardDiskInfo

 array Sys_GetHardDiskInfo ()

Returns

Array of information about all the hard drives

Description

Provides information on the existing disks in the system, including the size and the already used memory.

Example

print_r(Sys_GetHarddiskInfo()); 

/*
Array
(
    [HDD0] => Array
    (
        [LETTER] => c:\
        [LABEL] =>
        [TOTAL] => 53684989952
        [FREE] => 23275171840
    )
    
    [NUMDRIVES] => 1
)
*/
Any questions?