SECFileSystem::GetTotalSpace
LONGSECFileSystem::GetTotalSpace(const CString&FileSystem)
Returns the number of bytes (used and unused) on the specified filesystem.
Defined in: filesys.cpp
Return Value
The total number of bytes on the specified filesystem. For use with file systems under 2GB. This method is provided for backward compatability. See GetTotalSpaceEx for its replacement.
Parameters
FileSystem
The name of the filesystem.
Comments
To get the total number of bytes on a filesystem.
Example
LONG lSize = fs.GetTotalSpace("c:\\");
See Also