Click here to Skip to main content
Licence 
First Posted 26 Oct 2001
Views 128,085
Bookmarked 59 times

CFileVersionInfo - Retrieving a File's full Version Information Resource

By | 18 Jun 2002 | Article
A class that enables you to easily retrieve a file's version information.

Introduction

There are many cases, when version information extracted from a file's version resource could be useful. One example is to test for needed DLL versions. Another one is to simply use the version information from an application to display it in the about-dialog of the application. If your application contains more than one language resources, changing the version number becomes a boring task if you have to change the version label in each about-dialog. Using CFileVersionInfo you could simply read the version dynamically during runtime and insert it into the dialog. So you only will have to change the version resource when the version number of your application has changed.

Using CFileVersionInfo

Using the class CFileVersionInfo is very easy. Simply construct an object, call the Create() method to initialize the object with a file's version information and call the attribute operations to retrieve the required information.

The following short example writes the application's version information to stdout:

CFileVersionInfo  fvi;

// Retrieve version information for this module
if (fvi.Create())
{
    // Print version information
    cout
    << _T("Product: ") <<fvi.GetProductName()
    << _T("\n") << _T("Company: ")
    << fvi.GetCompanyName() << _T("\n")
    << _T("File Version Label: ")
    << fvi.GetFileVersion() << _T("\n")
    << _T("File Version Number: ")
    << fvi.GetFileVersion(3) << _T('.')
    << fvi.GetFileVersion(2) << _T('.')
    << fvi.GetFileVersion(1) << _T('.')
    << fvi.GetFileVersion(0);
}

CFileVersionInfo - Reference

Most of the methods are self-explanatory. Here are the references for the methods expected parameters:

Create

Initializes the object.

Syntax

BOOL Create(HMODULE hModule = NULL);
BOOL Create(LPCTSTR lpszFileName);

Parameters

hModule
Module handle of the module, from which version information should be extracted. Specifying NULL creates an object that uses the version information of the module used to create the calling process.
lpszFileName
Full path to the file, from which version information should be extracted.

Return Value

Returns TRUE if the version information has been extracted successfully and FALSE otherwise.

GetFileVersion

Retrieves binary file version.

Syntax

WORD GetFileVersion(int nIndex) const;

Parameters

nIndex
Byte of the file version to return. 0 specifies the least significant and 3 the most significant byte.

GetProductVersion

Returns the binary product version.

Syntax

WORD GetProductVersion(int nIndex) const;

Parameters

nIndex
Byte of the file version to return. 0 specifies the least significant and 3 the most significant byte.

Requirements

This should run on Windows 95 or later and Windows NT 3.1 or later.

You will need to link your software with version.lib.

Unicode support

Though I haven't tested it, there is no reason, why this should not work with Unicode.

Implementation Details

The class simply uses the following Windows' "File Installation Library Functions" for retrieving the version information:

  • GetFileVersionInfo()
  • GetFileVersioninfoSize()
  • VerQueryValue

Retrieving the strings of the version information is a little bit tricky. Different from other resource's, where Windows chooses the language that best fits the user's preferences, for the version resource the developer is responsible for choosing the best matching language.

The datablock returned by GetFileVersionInfo() (lpData) contains a list of all language-codepage-combinations included in the datablock. One can receive this list using the following sequence:

LPVOID   lpInfo;
UINT      unInfoLen;
VerQueryValue(lpData, _T("\\"), &lpInfo, &unInfoLen);
VerQueryValue(lpData, _T("\\VarFileInfo\\Translation"), &lpInfo, &unInfoLen);

CFileVersionInfo uses the following tests to get the best matching strings:

  1. Checks if version information is available that matches the user's main and sub language.
  2. Checks if version information is available that matches the user's main language.
  3. Checks if version information marked as "neutral" (LANG_NEUTRAL) is available.
  4. Checks if version information in English language (LANG_ENGLISH) is available.
  5. Uses the first language from the language list.

The first matching language is used. The users's main and sub language are retrieved by using the GetUserDefaultLangID() function.

Revision History

19 Jun 2002 - Initial Revision
19 Jun 2002 - Reformatted and rewrote some sections

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Sven Wiegand

Web Developer

Germany Germany

Member

Sven Wiegand (1976), IT professional living in Berlin (Germany), develops open source software in his free time. His most successfull project is the LaTeX IDE TeXnicCenter which is distributed under the terms of the GNU-GPL and has more than 100,000 users all about the world.
 
"The picture shows me with my racing bike on the top of the Roque de los Muchachos (2426m) - the highest point of the canarian island La Palma."

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionCurrent date in File Version Info [modified] PinmemberVijay Pate8:40 8 Feb '12  
QuestionSemantic Versioning Specification Pinmemberddbug19:54 11 Nov '11  
GeneralYou are the best Pinmemberturkim11:37 2 Oct '10  
GeneralUNICODE Problem PinmemberAric Green4:38 19 Mar '10  
Generalproblem PinmemberAric Green18:10 18 Mar '10  
GeneralThank you Pinmemberandrewtruckle23:39 15 Apr '09  
GeneralLicense Pinmembermsvenc5:50 2 Aug '07  
AnswerRe: License PinmemberSven Wiegand21:26 2 Aug '07  
GeneralExcellent Pinmemberwaldermort12:33 13 Aug '06  
GeneralA tip for Version.lib Pinmemberfader00039:29 13 Jul '06  
GeneralVisual Studio .Net PinmemberLea Robbo22:20 1 Mar '06  
GeneralFor linking to version.lib...just a tip, and if u get inconsistent dll linakge errors PinPopularmemberbrrrrrr17:36 1 Dec '05  
GeneralRe: For linking to version.lib...just a tip, and if u get inconsistent dll linakge errors PinmemberPandele Florin3:34 29 May '07  
I knew this as:
#pragma comment (lib,"version.lib")
but yours works fine as well.
I think this should be somewere in the code submission guide on this site.
It makes the VC++ code a lot more portable.Roll eyes | :rolleyes:
GeneralRe: For linking to version.lib...just a tip, and if u get inconsistent dll linakge errors Pinmembertypical user7:36 19 Feb '09  
GeneralLINK : warning LNK4089: PinsussLea Rob4:46 27 Jul '05  
GeneralWarning if running from network PinmemberJonathanMerel9:27 4 Apr '05  
GeneralUSEFUL!! PinmemberSamGw22:46 4 Feb '05  
GeneralShared Folder Path PinmemberFawad Asrar Qureshi20:55 19 Dec '04  
Generaluse on VC7 PinmemberKnuddlbaer23:24 23 Nov '03  
GeneralRe: use on VC7 PinmemberRail Jon Rogut6:31 15 Jul '04  
GeneralThanks PinmemberZorglab10:13 4 Aug '03  
GeneralUnresolved external PinmemberAl Newton11:24 23 Jan '03  
GeneralRe: Unresolved external PinmemberSven Wiegand21:21 23 Jan '03  
GeneralThank you.... Pinsussrollasoc6:28 29 Aug '02  
Generalproblem with exe PinsussAnonymous7:46 28 Aug '02  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120529.1 | Last Updated 19 Jun 2002
Article Copyright 2001 by Sven Wiegand
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid