disk_free_space
Returns the available space on the file system or disk partition
disk_free_space()
function returns the available space in the directory
<?php echo disk_free_space ( "C:" ) ; ?>
Output:
209693288558
disk_free_space ( directory )
parameter | describe |
---|---|
Directory | Required. Specify the directory to be inspected. |
The directory parameter is a directory string. This function returns the available number of bytes based on the corresponding file system or disk partition.