How to tell if a windows PE file is a console subs

2020-02-11 10:22发布

Basically I need a program that will sort windows .exe's from the console counterparts.

A file scanner:

SortExe(file exe) 
{
 if (IsPeWindows(exe)) 
    {
      AddToList1(exe); 
    }
 else if (IsPeConsole())
    {
    AddToList2(exe); 
    }
 }

How do I implement IsPeWindows or IsPeConsole() ?

I do not particularly mind what language solutions come in so long as it's one of c, c++, c# or visual basic.

1条回答
Melony?
2楼-- · 2020-02-11 10:32

Pass SHGFI_EXETYPE to SHGetFileInfo() & examine the hi/loword of the return value as explained in the link.

查看更多
登录 后发表回答