众所周知,在微软的操作系统下编写应用程序,最主要的还是通过windows所提供的api函数来实现各种操作的,这些函数通常是可以直接使用的,只要包含windows.h这个头文件。 今天我们主要介绍的是几个常用的api函数,通过它我们可以获取用户磁盘的相关信息。 示例程序:请点击附件下载。 其主要函数原型说明如下: 1.获取系统中逻辑驱动器的数量The GetLogicalDrives function retrieves a bitmask rePResenting the currently available disk drives.DWord GetLogicalDrives(void); 2.获取所有驱动器字符串信息The GetLogicalDriveStrings function fills a buffer with strings that specify valid drives in the system.DWORD GetLogicalDriveStrings( DWORD nBufferLength, LPTSTR lpBuffer ); 3.获取驱动器类型The GetDriveType function determines whether a disk drive is a removable, fixed, CD-ROM, RAM disk, or network drive. UINT GetDriveType( LPCTSTR lpRootPathName ); 4. 获取驱动器磁盘的空间状态,函数返回的是个BOOL类型数据The GetDiskFreeSpaceEx function retrieves information about the amount of space available on a disk volume: the total amount of space, the total amount of free space, and the total amount of free space available to the user associated with the calling thread.BOOL GetDiskFreeSpaceEx( LPCTSTR lpDirectoryName, PULARGE_INTEGER lpFreeBytesAvailable, PULARGE_INTEGER lpTotalNumberOfBytes, PULARGE_INTEGER lpTotalNumberOfFreeBytes ); 以下是完整的示例程序代码: 更多内容请看C/C++技术专题专题,或 #include <iostream> #include <windows.h> using namespace std;
int main() { int DiskCount = 0; DWORD DiSKINfo = GetLogicalDrives(); //利用GetLogicalDrives()函数可以获取系统中逻辑驱动器的数量,函数返回的是一个32位无符号整型数据。 while(DiskInfo)//通过循环操作查看每一位数据是否为1,假如为1则磁盘为真,假如为0则磁盘不存在。 { if(DiskInfo&1)//通过位运算的逻辑与操作,判定是否为1 { ++DiskCount;