I need to get the product version and file version for a dll or exe using Win32 native APIs in C or C++. I'm not looking for the Windows version, but the version numbers that you see by right-clicking on a dll, selecting "Properties", then looking at the "Details" tab. This is usually a four-part dotted version number x.x.x.x.
|
2
|
|||||||||
|
|
|
You would use the GetFileVersionInfo API. See Using Version Information on the MSDN site. Sample:
|
||||
|
|
|
Those sorts of things are often stored in the registry. |
||
|
|
|
|
Found these articles...sorry, but I don't have direct experience with how to do this using native APIs, so I deferred to an Internet search:
Hope these help! |
||
|
|
|
|
The easiest way is to use the GetFileVersionInfoEx or GetFileVersionInfo API functions. You can also do it from within your application resources as explained here. |
||
|
|
|
|
[Self-answering, since it took me a lot of Googling to get the right answer to this question, and right now the top Google hits are misleading.] You get this information using the Version Information APIs (http://msdn.microsoft.com/en-us/library/ms646981.aspx). Here is a sample:
|
||
|
|
