win32api.GetDiskFreeSpaceEx
tuple = GetDiskFreeSpaceEx(rootPath) Retrieves information about the specified disk, including the amount of free space available.
ParametersrootPath : string
Specifies the root directory of the disk to return information about. If rootPath is None, the method uses the root of the current directory.Win32 API ReferencesGetDiskFreeSpaceEx
Return ValueThe return value is a tuple of 3 integers, containing
the number of free bytes available
the total number of bytes available on disk
the total number of free bytes on disk
the above values may be less, if user-quotas are in effect
If the function fails, an error is returned.
|