我实际上需要我的驱动程序(逐行)阅读一些将被列入黑名单的程序。
_T(" bannedfile.exe")是我实际需要列入黑名单程序的地方。
如何让_tcscmp逐行读取文本文件?
(它在加载驱动程序的主机程序和列入黑名单的程序之间进行比较)
BOOL ProcessBlackList() {
TCHAR modulename[MAX_PATH];
GetModuleFileName(NULL, modulename, MAX_PATH);
PathStripPath(modulename);
if (_tcscmp(modulename, _T("bannedfile.exe")) != 1) {
return 0;
}
else {
return 0x2;
}
}
答案 0 :(得分:0)
不能这样做。
您应该能够使用use getline逐行读取文件,然后将这些行传递给_tcscmp。应该像这样工作:
wchar_t const name[] = L"bannedfile.exe";
std::wifstream file(name);
std::wstring line;
while (std::getline(file, line)
{
if (_tcscmp(modulename, line.c_str()) == 0) {
return TRUE; //module is in list
}
}
return FALSE; // module is not in list
缺少VS的副本来测试它。
如果您遇到unicode解析问题,因为文件的编码不是默认值所期望的,请将其读为:What is std::wifstream::getline doing to my wchar_t array? It's treated like a byte array after getline returns