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-11-02在 Objective-C 中strong 和 retain有什么区别-icode9专业技术文章分享
- 2024-11-02NSString 中的 hasPrefix 有什么作用-icode9专业技术文章分享
- 2024-11-02在 C 和 Objective-C 中inline的用法是什么-icode9专业技术文章分享
- 2024-11-02文件掩码什么意思?-icode9专业技术文章分享
- 2024-11-02在 Git 提交之前运行 composer cs-fix 命令怎么实现-icode9专业技术文章分享
- 2024-11-02为 Composer 的 cs-fix 命令指定一个目录怎么实现-icode9专业技术文章分享
- 2024-11-02微信公众号开发中怎么获取用户的 unionid-icode9专业技术文章分享
- 2024-11-01lip-sync公司指南:一文读懂主要玩家和技术
- 2024-11-01Anthropic的新RAG方法——提升大型语言模型在特定领域的表现
- 2024-11-01UniApp 中组件的生命周期是多少-icode9专业技术文章分享