EXE 파일을 파싱해주는 pefile 모듈을 이용한 방법: http://code.google.com/p/pefile/
다음 코드와 같이 구현할 수 있다.
1 2 3 4 5 | import pefile pe = pefile.PE(r 'C:Windowsnotepad.exe' ) FileVersion = pe.FileInfo[ 0 ].StringTable[ 0 ].entries[ 'FileVersion' ] ProductVersion = pe.FileInfo[ 0 ].StringTable[ 0 ].entries[ 'ProductVersion' ] |
exe파일에는 FileVersion및ProductVersion값이 32비트 정수로 저장되어 있는데 이것은 각각 두개의 16비트 정수로 나뉜다.
pefile을 이용하여 이 정보를 얻는 방법은 다음과 같다.
1 2 3 4 5 6 7 8 9 10 11 | pe = pefile.PE(r 'C:Windowsnotepad.exe' ) FileVersionLS = pe.VS_FIXEDFILEINFO.FileVersionLS FileVersionMS = pe.VS_FIXEDFILEINFO.FileVersionMS ProductVersionLS = pe.VS_FIXEDFILEINFO.ProductVersionLS ProductVersionMS = pe.VS_FIXEDFILEINFO.ProductVersionMS FileVersion = (FileVersionMS >> 16 , FileVersionMS & 0xFFFF , FileVersionLS >> 16 , FileVersionLS & 0xFFFF ) ProductVersion = (ProductVersionMS >> 16 , ProductVersionMS & 0xFFFF , ProductVersionLS >> 16 , ProductVersionLS & 0xFFFF ) print 'File version: %s.%s.%s.%s' % FileVersion print 'Product version: %s.%s.%s.%s' % ProductVersion |
또한 win32api 모듈을 이용할 수 도있다. http://sourceforge.net/projects/pywin32/
1 2 3 4 5 6 7 | from win32api import GetFileVersionInfo, LOWORD, HIWORD def get_version_number (filename): info = GetFileVersionInfo (filename, "\" ) ms = info[ 'FileVersionMS' ] ls = info[ 'FileVersionLS' ] return HIWORD (ms), LOWORD (ms), HIWORD (ls), LOWORD (ls) |