Click here to Skip to main content
15,867,686 members
Articles / Desktop Programming / MFC
Article

CFileVersionInfo - Retrieving a File's full Version Information Resource

Rate me:
Please Sign up or sign in to vote.
4.98/5 (32 votes)
18 Jun 20023 min read 204.1K   3.8K   67   39
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


Written By
Web Developer
Germany Germany
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."

Comments and Discussions

 
QuestionAnother License Question Pin
Member 1329461916-Jul-17 3:50
Member 1329461916-Jul-17 3:50 
QuestionCurrent date in File Version Info Pin
Vijay Pate8-Feb-12 8:40
Vijay Pate8-Feb-12 8:40 
QuestionSemantic Versioning Specification Pin
ddbug11-Nov-11 19:54
ddbug11-Nov-11 19:54 
GeneralYou are the best Pin
turkim2-Oct-10 11:37
turkim2-Oct-10 11:37 
GeneralUNICODE Problem Pin
Aric Wang19-Mar-10 4:38
Aric Wang19-Mar-10 4:38 
Generalproblem Pin
Aric Wang18-Mar-10 18:10
Aric Wang18-Mar-10 18:10 
GeneralThank you Pin
andrewtruckle15-Apr-09 23:39
andrewtruckle15-Apr-09 23:39 
GeneralLicense Pin
msvcyc2-Aug-07 5:50
msvcyc2-Aug-07 5:50 
AnswerRe: License Pin
Sven Wiegand2-Aug-07 21:26
Sven Wiegand2-Aug-07 21:26 
GeneralRe: License Pin
Member 1329461911-Jul-17 2:52
Member 1329461911-Jul-17 2:52 
GeneralExcellent Pin
Waldermort13-Aug-06 12:33
Waldermort13-Aug-06 12:33 
GeneralA tip for Version.lib Pin
fader000313-Jul-06 9:29
fader000313-Jul-06 9:29 
GeneralVisual Studio .Net Pin
Lea Robbo1-Mar-06 22:20
Lea Robbo1-Mar-06 22:20 
GeneralFor linking to version.lib...just a tip, and if u get inconsistent dll linakge errors Pin
Haroon Sarwar1-Dec-05 17:36
Haroon Sarwar1-Dec-05 17:36 
GeneralRe: For linking to version.lib...just a tip, and if u get inconsistent dll linakge errors Pin
Pandele Florin29-May-07 3:34
Pandele Florin29-May-07 3:34 
GeneralRe: For linking to version.lib...just a tip, and if u get inconsistent dll linakge errors Pin
typical user19-Feb-09 7:36
typical user19-Feb-09 7:36 
GeneralLINK : warning LNK4089: Pin
Lea Robbo27-Jul-05 4:46
Lea Robbo27-Jul-05 4:46 
GeneralWarning if running from network Pin
JonMerel4-Apr-05 9:27
JonMerel4-Apr-05 9:27 
GeneralUSEFUL!! Pin
SamKu4-Feb-05 22:46
SamKu4-Feb-05 22:46 
GeneralShared Folder Path Pin
Fawad Asrar Qureshi19-Dec-04 20:55
Fawad Asrar Qureshi19-Dec-04 20:55 
Generaluse on VC7 Pin
Knuddlbaer23-Nov-03 23:24
Knuddlbaer23-Nov-03 23:24 
GeneralRe: use on VC7 Pin
Rail Jon Rogut15-Jul-04 6:31
Rail Jon Rogut15-Jul-04 6:31 
I believe you meant

#include <winver.h>

You have to check the box "Do not treat <'s as HTML tags"

Rail
GeneralThanks Pin
Zorglab4-Aug-03 10:13
Zorglab4-Aug-03 10:13 
GeneralUnresolved external Pin
Al Newton23-Jan-03 11:24
Al Newton23-Jan-03 11:24 
GeneralRe: Unresolved external Pin
Sven Wiegand23-Jan-03 21:21
Sven Wiegand23-Jan-03 21:21 

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

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