C/C++ 应用层下遍历驱动列表
【摘要】 实现在应用层下遍历输出驱动文件路径列表信息。实现代码:#include <stdio.h>#include <windows.h>#include <Psapi.h>#include <shlwapi.h> //PathFileExists#pragma comment(lib, "psapi.lib")#pragma comment(lib, "shlwapi.lib")#define ...
实现在应用层下遍历输出驱动文件路径列表信息。
实现代码:
#include <stdio.h>
#include <windows.h>
#include <Psapi.h>
#include <shlwapi.h> //PathFileExists
#pragma comment(lib, "psapi.lib")
#pragma comment(lib, "shlwapi.lib")
#define ARRAY_SIZE 1024
int _tmain(int argc, _TCHAR* argv[]){
DWORD cbNeeded = 0; // drivers[] 返回的字节数
LPVOID drivers[ARRAY_SIZE] = {0}; // 驱动程序地址列表数组
int cDrivers = 0; // 驱动个数
if (EnumDeviceDrivers(drivers, sizeof(drivers), &cbNeeded) && cbNeeded < sizeof(drivers)) // EnumDeviceDrivers 检索每个驱动文件的加载地址
{
char szDriver[ARRAY_SIZE] = {0}; // 驱动文件名
char szPath[ARRAY_SIZE] = {0}; // 存放驱动文件全路径
char szSystemPath[ARRAY_SIZE] = {0}; // 存放 system32 文件夹路径
cDrivers = cbNeeded / sizeof(LPVOID); // 驱动个数
//得到C:\Windows\system32\dbghelp.dll
GetSystemDirectory(szSystemPath, sizeof(szSystemPath));
strcat_s(szSystemPath, "\\dbghelp.dll");
for (int i = 0; i < cDrivers; i++)
{
if (GetDeviceDriverBaseName(drivers[i], szDriver, sizeof(szDriver) / sizeof(LPVOID)))
{
// 打印驱动名
printf("【%d】:%s\n", i+1, szDriver);
// 打印驱动文件路径
//GetDeviceDriverFileName(drivers[i], szPath, sizeof(szPath));
//printf("%s\n", szPath);
}
}
}
getchar();
return 0;
}
代码基本上每一句都做了注释,应该蛮好理解的,效果图如下:
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)