最近很多朋友喜欢上设计,但是大家却不知道如何去做,别担心有图老师给你解答,史上最全最棒的详细解说让你一看就懂。
【 tulaoshi.com - 编程语言 】
众所周知,在微软的操作系统下编写应用程序,最主要的还是通过windows所提供的api函数来实现各种操作的,这些函数通常是可以直接使用的,只要包含windows.h这个头文件, 下载源文件
今天我们主要介绍的是几个常用的api函数,通过它我们可以获取用户磁盘的相关信息。
其主要函数原型说明如下:
1.获取系统中逻辑驱动器的数量
The GetLogicalDrives function retrieves a bitmask representing the currently available disk drives.
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/bianchengyuyan/)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
);
来源:http://www.tulaoshi.com/n/20160219/1600563.html
看过《C++ 通过WIN32 API 获取逻辑磁盘详细信息》的人还看了以下文章 更多>>