C/C++ 遍历驱动列表(应用层下)
2021/7/16 14:05:08
本文主要是介绍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 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; }
代码基本上每一句都做了注释,应该蛮好理解的,效果图如下:
最后感谢JoyChou老哥提供的思路:https://www.52pojie.cn/thread-243050-1-1.html
这篇关于C/C++ 遍历驱动列表(应用层下)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-22怎么通过控制台去看我的页面渲染的内容在哪个文件中呢-icode9专业技术文章分享
- 2024-12-22el-tabs 组件只被引用了一次,但有时会渲染两次是什么原因?-icode9专业技术文章分享
- 2024-12-22wordpress有哪些好的安全插件?-icode9专业技术文章分享
- 2024-12-22wordpress如何查看系统有哪些cron任务?-icode9专业技术文章分享
- 2024-12-21Svg Sprite Icon教程:轻松入门与应用指南
- 2024-12-20Excel数据导出实战:新手必学的简单教程
- 2024-12-20RBAC的权限实战:新手入门教程
- 2024-12-20Svg Sprite Icon实战:从入门到上手的全面指南
- 2024-12-20LCD1602显示模块详解
- 2024-12-20利用Gemini构建处理各种PDF文档的Document AI管道