使用Windows API检索打开的文件描述符的数量



我想知道我在c++应用程序中打开了多少文件描述符。这可以用Windows API函数完成吗?

您可以使用GetFileType请求进程中的每个句柄。

      DWORD type_char = 0, 
      type_disk = 0, 
      type_pipe = 0, 
      type_remote = 0, 
      type_unknown = 0,
      handles_count = 0;
GetProcessHandleCount(GetCurrentProcess(), &handles_count);
handles_count *= 4;
for (DWORD handle = 0x4; handle < handles_count; handle += 4) {
    switch (GetFileType((HANDLE)handle)){
        case FILE_TYPE_CHAR:
            type_char++;
            break;
        case FILE_TYPE_DISK:
            type_disk++;
            break;
        case FILE_TYPE_PIPE: 
            type_pipe++;
            break;
        case FILE_TYPE_REMOTE: 
            type_remote++;
            break;
        case FILE_TYPE_UNKNOWN:
            if (GetLastError() == NO_ERROR) type_unknown++;
            break;
    }
}

如果你是在检查打开的句柄之后,那么你可以从SysInternals处理实用程序

相关内容

  • 没有找到相关文章

最新更新