1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
{
This file is part of the Free Component Library (FCL)
Copyright (c) 1999-2000 by the Free Pascal development team
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
{
Based on getver by Bernd Juergens - Munich, Germany
email :bernd@promedico.com
Usage : Drop component on form. Set desired file name using
FileVersionInfo.filename := 'c:\winnt\system32\comctl32.dll'
or something like that.
Read StringLists VersionStrings and VersionCategories.
or check a single entry:
FileVersionInfo1.fileName := 'd:\winnt\system32\comctl32.dll';
showMessage(FileVersionInfo1.getVersionSetting('ProductVersion'));
}
unit fileinfo;
{$mode objfpc}
interface
uses
Windows, SysUtils, Classes;
{ Record to receive charset }
type TTranslation = record
langID : WORD;
charset : WORD;
end;
type
TFileVersionInfo = class(TComponent)
private
FFileName : WideString;
FmyVersionStrings : TStringList;
FmyVersionCategories : TStringList;
procedure SetFileName (const cwsFile : Widestring);
procedure readVersionFromFile;
protected
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
function getVersionSetting(inp : string): String;
published
property fileName : widestring read FFileName write SetFileName;
property VersionStrings : TStringList read FmyVersionStrings;
property VersionCategories : TStringList read FmyVersionCategories;
end;
implementation
{ initialize everything }
constructor TFileVersionInfo.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FmyVersionStrings := TStringList.Create;
FmyVersionCategories := TStringList.Create;
FFileName := '';
end;
destructor TFileVersionInfo.Destroy;
begin
FmyVersionCategories.Free;
FmyVersionStrings.Free;
inherited;
end;
{ Get filename, check if file exists and read info from file }
procedure TFileVersionInfo.SetFileName (const cwsFile : Widestring);
begin
FmyVersionStrings.clear;
FmyVersionCategories.clear;
if fileexists(cwsFile) then
begin
FFileName := cwsFile;
readVersionFromFile;
end
else
begin
FFileName := '';
end;
end;
{ read info from file }
procedure TFileVersionInfo.readVersionFromFile;
var dwHandle, dwSize : Longword;
p : pwidechar;
i : integer;
pp : pointer;
theFixedInfo : TVSFixedFileInfo;
theTrans : TTranslation;
s : widestring;
ts : TStringList;
begin
ts := TStringList.Create;
try
ts.add('CompanyName');
ts.add('FileDescription');
ts.add('FileVersion');
ts.add('InternalName');
ts.add('LegalCopyright');
ts.add('OriginalFilename');
ts.add('ProductName');
ts.add('ProductVersion');
{ get size of data }
dwSize := GetFileVersionInfoSize(PWidechar(FFilename),@dwHandle);
if dwSize=0 then exit;
p := NIL;
try
{ get memory }
GetMem(p,dwSize+10);
{ get data }
if not GetFileVersionInfo(PWidechar(FFilename),0,dwSize,p) then exit;
{ get root info }
if not VerQueryValue(p,'\',pp,PUINT(dwSize)) then exit;
move(pp^,theFixedInfo,dwSize);
{ get translation info }
if not VerQueryValue(p,'\VarFileInfo\Translation',pp,PUINT(dwSize)) then
exit;
move(pp^,theTrans,dwSize);
{ iterate over defined items }
for i:=0 to ts.count-1 do
begin
s := WideFormat('\StringFileInfo\%4x%4x\%s',[theTrans.langID,theTrans.charset,ts[i]]);
if not VerQueryValue(p,PWideChar(s),pp,PUINT(dwSize)) then Continue;
if dwSize>0 then
begin
SetLength(s,dwSize);
move(pp^,s,dwSize);
FmyVersionCategories.add(ts[i]);
FmyVersionStrings.add(s);
end
end;
finally
{ release memory }
FreeMem(p);
end;
finally ts.Free end;
end;
{ get single version string }
function TFileVersionInfo.getVersionSetting(inp : string): String;
var i : integer;
begin
inp:=LowerCase(inp);
for i:= 0 to FmyVersionCategories.Count -1 do
if LowerCase(FmyVersionCategories[i])=inp then
begin
result := FmyVersionStrings[i];
Exit;
end;
result := '';
end;
end.
|