Is there a way in Ruby to find the version of file, specifically a .dll file?
|
|
What if you want to get the version info with ruby, but the ruby code isn't running on Windows? The following does just that (heeding the same extended charset warning):
|
||
|
|
|
|
For Windows EXE's and DLL's:
The 'unpack'+regexp part is a hack, the "proper" way is the VerQueryValue API, but this should work for most files. (probably fails miserably on extended character sets.) |
||
|
|
|
|
If you are working on the Microsoft platform, you should be able to use the Win32 API in Ruby to call GetFileVersionInfo(), which will return the information you're looking for. http://msdn.microsoft.com/en-us/library/ms647003.aspx |
||
|
|
|
|
For any file, you'd need to discover what format the file is in, and then open the file and read the necessary bytes to find out what version the file is. There is no API or common method to determine a file version in Ruby. Note that it would be easier if the file version were in the file name. |
||
|
|
