CheckDiskSpace
Determines the information about the filesystem on which the pathname inPath is located.
Syntax
C++
Python
def CheckDiskSpace( inPath: str, / ) -> ( outCapacity: int, outFree: int, outAvailable: int )
Parameters
| Name | Type | Default | Description | |
|---|---|---|---|---|
![]() |
inPath | str | Input path | |
![]() |
outCapacity | int | Total size of the filesystem, in bytes | |
![]() |
outFree | int | Free space on the filesystem, in bytes | |
![]() |
outAvailable | int | Free space available to a non-privileged process (may be equal or less than outFree) |


