当前位置:首页 > 编程学习 > C++获取文件版本等信息

C++获取文件版本等信息

编程学习2022-07-1061980

C++获取文件版本等信息.jpg C++获取文件版本等信息  编程 技术 C++ 第1张



#include "stdio.h"
#include <iostream>
#include <string>
#include <tchar.h>
#include <windows.h>

#pragma comment(lib, "version.lib")
using namespace std;
std::string GetFileVersion(char *strFilePath)
{
    DWORD dwSize;
    DWORD dwRtn;
    std::string szVersion;
    //获取版本信息大小
    dwSize = GetFileVersionInfoSize(strFilePath, NULL);
    if (dwSize == 0)
    {
        return "读取文件失败!";
    }
    char *pBuf;
    pBuf = new char[dwSize + 1];
    if (pBuf == NULL)
        return "";
    memset(pBuf, 0, dwSize + 1);
    //获取版本信息
    dwRtn = GetFileVersionInfo(strFilePath, NULL, dwSize, pBuf);
    if (dwRtn == 0)
    {
        return "";
    }
    LPVOID lpBuffer = NULL;
    UINT uLen = 0;
    //版本资源中获取信息

    dwRtn = VerQueryValue(pBuf,
                          TEXT("\\StringFileInfo\\080404b0\\FileDescription"), // 0804中文
                          // 04b0即1252,ANSI
                          //可以从ResourceView中的Version中BlockHeader中看到
                          //可以测试的属性
                          /*
                          CompanyName
                          FileDescription
                          FileVersion
                          InternalName
                          LegalCopyright
                          OriginalFilename
                          ProductName
                          ProductVersion
                          Comments
                          LegalTrademarks
                          PrivateBuild
                          SpecialBuild
                          */
                          &lpBuffer,
                          &uLen);
    if (dwRtn == 0)
    {
        return "";
    }
    szVersion = (char *)lpBuffer;
    delete pBuf;
    return szVersion;
}

void main()
{
    char *strFilePath = "C:\\Program Files (x86)\\Tencent\\QQ\\Bin\\QQ.exe";
    cout << strFilePath << " FileDescription is: " << GetFileVersion(strFilePath) << endl;
    getchar();
}


扫描二维码推送至手机访问。

版权声明:本文由海阔天空发布,如需转载请注明出处。

本文链接:https://www.apull.net/html/20220710164438.html

标签: 编程技术C++
分享给朋友:

相关文章

 C++ string类常用函数

C++ string类常用函数

string类的构造函数:string(const char *s);    //用c字符串s初始化 string(int n,char  c);     //用n个字符c初始化此外,string类还支持默认构造函数和复制构造函数,如string s1;string  s2="hello";都是正确的写法。...

用VB类实现文件对话框

用VB类实现文件对话框

用VB类实现文件对话框'类名:ComDlg.cls '作用:文件打开保存对话框 ' ' ' 'By:Apull '2007-5-21 'http://www.apull.net Option Explicit Private Declare Function GetOpenFileName Lib "comdlg32.dll" Alias "GetOpenFileNameA" ( _ pOpenfil...

VBScript 错误信息

VBScript 错误信息

错误代码 信息5 无效的过程调用或参数6 溢出7 内存不够9 下标越界10 数组长度固定或临时锁定11 被零除13 类型不匹配14 字符串空间溢出28 堆栈空间溢出35 Sub或Function未定义48 加载D...

制作网页28个常用小代码

制作网页28个常用小代码

1、oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键<table border oncontextmenu=return(false)><td>no</table>  可用于Table2、<body onselectstart="return false"> 取消选取、防止复制3、onpaste="retu...