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
Input value inPath str Input path
Output value outCapacity int Total size of the filesystem, in bytes
Output value outFree int Free space on the filesystem, in bytes
Output value outAvailable int Free space available to a non-privileged process (may be equal or less than outFree)