Click here to Skip to main content
15,878,814 members
Articles / Programming Languages / C++

FileVersion - Retrieve file version information

Rate me:
Please Sign up or sign in to vote.
4.89/5 (15 votes)
17 May 2010CPOL2 min read 51.3K   923   35   13
Easily determine the version of a specified file or the version of the current process.

Introduction

Getting the version information of a file is useful in many cases. Maybe you want to check the version of a library before you load it, to ensure not loading an old one which can result in unexpected software behaviour. Or you simply want to display the current version of your application in the About-box. This class allows you to do that in a very easy way.

Background

I'm going to develop an application which detects problems with duplicated libraries. It should notify me if an old library has been loaded instead of the new one because of the "Library Search Order". This class provides me the basic requirements for that, like determining or comparing file versions.

There are similar articles on the CodeProject already. I developed my own class to get a lightweight way to determine file versions without storing other information like company name, description, etc..

Using the code

The following samples demonstrate how to use this class.

Get the version of the current process

C++
CString        strFileVersion;
FileVersion    cFileVersion;

// Get formated file version
cFileVersion.GetFileVersion( L"Version: %i.%i", strFileVersion );

Useful to keep your About dialog up-to-date:

About Box

Get the version of a specified file

C++
CString        strFileVersion;
FileVersion    cFileVersion( L"C:\\Windows\\System32\\NativeHooks.dll" );

// Get file version
cFileVersion.GetFileVersion( strFileVersion );

MessageBox( strFileVersion );

Output:

File version of NativeHooks.dll

Compare file versions

C++
// Version is 6.1.7600.16385
FileVersion    cFileVersionNativeHooks( L"C:\\Windows\\System32\\NativeHooks.dll" );

// Version is 12.0.7600.16385
FileVersion    cFileVersionWmerror( L"C:\\Windows\\System32\\wmerror.dll" );

// Compare versions
bool bIsGreater =  ( cFileVersionNativeHooks > cFileVersionWmerror );  // false
bool bIsLess    =  ( cFileVersionNativeHooks < cFileVersionWmerror );  // true
bool bIsEqual    =  ( cFileVersionNativeHooks == cFileVersionWmerror ); // false

Interface

Constructors

  • explicit FileVersion( const TCHAR * kstrFilePath ): Creates the FileVersion of the specified file.
  • FileVersion() Creates the FileVersion: of the current process.

Methods

  • bool IsValid() const: Returns whether the file version could be determined.
  • unsigned short GetMajorVersion() const: Returns the Major Version.
  • unsigned short GetMinorVersion() const: Returns the Minor Version.
  • unsigned short GetReleaseNumber() const: Returns the Release Number.
  • unsigned short GetBuildNumber() const: Returns the Build Number.
  • bool GetFileVersion( const TCHAR* kstrFileFormat, CString& strFileVersion ) const: Gets the file version string. The order is Major, Minor, Release, and Build Number. The string can be formatted; for instance, L"Version: %i.%i.%i.%i" will return a string like "Version: 12.1.0.530".
  • bool GetFileVersion( CString& strFileVersion ) const: Gets the file version string. The order is Major, Minor, Release, and Build number, with a dot in between. For example: "12.1.0.530".
  • bool IsEqual( const FileVersion & krhs ) const: Returns true if the file version is equal to the passed file version.

Operations

  • bool operator<( const FileVersion & krhs ) const: Returns true if the file version is less than the passed file version.
  • bool operator>( const FileVersion & krhs ) const: Returns true if the file version is greater than the passed file version.
  • bool operator==( const FileVersion & krhs ) const: Returns true if the file version is equal to the passed file version.

Implementation details

This is how the file version is determined:

C++
bool FileVersion::DetermineFileVersion( const TCHAR* kstrFilePath )
{
    // Precondition
    if ( NULL == kstrFilePath )
        return false; // FilePath is empty, no file to determine version.

    DWORD    dwHandle;

    // Determines whether the operating system can retrieve version information
    // for a specified file.
    DWORD    dwFileVersionInfoSize = 
        GetFileVersionInfoSize( kstrFilePath, &dwHandle );

    if ( NULL == dwFileVersionInfoSize )
        return false;    // Can't retrieve version information size.

    // Allocate space to retrieve version information using vector to prevent
    // memory leaks
    std::vector<BYTE>    pData( dwFileVersionInfoSize );

    // Retrieves version information for the specified file.
    if ( false == GetFileVersionInfo( kstrFilePath
        , dwHandle
        , dwFileVersionInfoSize
        , static_cast<lpvoid>( &pData[0] ) ) )
        return false; // Can't retrieve version information.

    // The memory of ptFileInfo is freed when pData is freed.
    VS_FIXEDFILEINFO *ptFileInfo;
    UINT    uintSize;

    // Retrieves version information from the version-information resource
    if ( false == VerQueryValue( static_cast<lpvoid>( &pData[0] )
        , _T("\\")
        , reinterpret_cast<lpvoid*> ( &ptFileInfo )
        , &uintSize ) )
        return false; // Can't retrieve version information

    // Resolve major, minor, release and build number.
    musMajorVersion        = static_cast<unsigned>(  
        ( ptFileInfo->dwFileVersionMS >> 16 ) &0xffff );

    musMinorVersion        = static_cast<unsigned>( 
        ptFileInfo->dwFileVersionMS &0xffff );

    musReleaseNumber    = static_cast<unsigned>( 
        ( ptFileInfo->dwFileVersionLS >> 16 ) &0xffff);

    musBuildNumber        = static_cast<unsigned>( 
        ptFileInfo->dwFileVersionLS & 0xffff );

    return true;
}

Notes

This class compiles with UNICODE and ANSI at warning level 4.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Germany Germany
I study computer science, develop software in my free time.

Comments and Discussions

 
GeneralMy vote of 2 Pin
dgendreau5-May-10 17:28
dgendreau5-May-10 17:28 
GeneralRe: My vote of 2 [modified] Pin
Martin Brandl5-May-10 21:39
Martin Brandl5-May-10 21:39 
GeneralRe: My vote of 2 [modified] Pin
dgendreau6-May-10 5:09
dgendreau6-May-10 5:09 
GeneralRe: My vote of 2 [modified] Pin
dgendreau6-May-10 6:57
dgendreau6-May-10 6:57 
GeneralRe: My vote of 2 Pin
Martin Brandl6-May-10 7:17
Martin Brandl6-May-10 7:17 
GeneralRe: My vote of 2 [modified] Pin
dgendreau6-May-10 7:36
dgendreau6-May-10 7:36 
GeneralRe: My vote of 2 Pin
Martin Brandl6-May-10 8:19
Martin Brandl6-May-10 8:19 

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.