2
基本上我需要一個程序,將從控制檯對應窗口排序Windows.exe。如何判斷一個Windows PE文件是編程控制檯子系統還是Windows子系統?
的文件掃描:
SortExe(file exe)
{
if (IsPeWindows(exe))
{
AddToList1(exe);
}
else if (IsPeConsole())
{
AddToList2(exe);
}
}
如何實現IsPeWindows或IsPeConsole()?
只要是c,C++,c#或visual basic中的一種,我並不特別關注哪些語言解決方案。