从 Inno Setup 中存储在同一目录中的 .ini 文件中读取安装程序版本
Read installer version from an .ini file stored in the same directory in Inno Setup
我想使用单独的 INI 文件分发编译后的安装程序。安装程序将从提供给该特定客户端的 INI 文件加载配置(例如版本)。
我在与 Setup.exe
相同的目录中有一个 ver.ini
文件。它包含-
[Version]
Ver=0.0.11
我想这样用-
#define AppVer ReadIni("ver.ini", "Version", "Ver", "unknown")
问题:Inno Setup 将 AppVer
显示为 unknown
,而不是 0.0.11
。
如果我对 ver.ini
文件使用硬编码文件路径,它会起作用:
#define AppVer ReadIni("C:\Users\Admin\Desktop\ver.ini", "Version", "Ver", "unknown")
因为我要将安装程序分发给我的客户,所以我不能使用硬编码文件路径。
感谢任何帮助!
您不能使用 preprocessor. The preprocessor is executed on compile time. So even if you fix the path problem (e.g. using SourcePath
preprocessor variable),这无济于事,因为您将在 编译 安装程序的机器上读取 INI 文件。不在安装程序 执行 .
的机器上
您必须使用 Pascal 脚本和 scripted constant. Use GetIniString
function to read the INI file and src
constant 来引用源目录。
[Setup]
AppVersion={code:GetAppVersion}
[Code]
function GetAppVersion(Param: string): string;
var
IniPath: string;
begin
IniPath := ExpandConstant('{src}\ver.ini');
Result := GetIniString('Version', 'Ver', 'Unknown', IniPath);
end;
如果找不到版本,您可能想要中止安装:
function GetAppVersion(Param: string): string;
var
IniPath: string;
begin
IniPath := ExpandConstant('{src}\ver.ini');
Result := GetIniString('Version', 'Ver', '', IniPath);
if Result = '' then RaiseException('Cannot find version');
end;
我想使用单独的 INI 文件分发编译后的安装程序。安装程序将从提供给该特定客户端的 INI 文件加载配置(例如版本)。
我在与 Setup.exe
相同的目录中有一个 ver.ini
文件。它包含-
[Version]
Ver=0.0.11
我想这样用-
#define AppVer ReadIni("ver.ini", "Version", "Ver", "unknown")
问题:Inno Setup 将 AppVer
显示为 unknown
,而不是 0.0.11
。
如果我对 ver.ini
文件使用硬编码文件路径,它会起作用:
#define AppVer ReadIni("C:\Users\Admin\Desktop\ver.ini", "Version", "Ver", "unknown")
因为我要将安装程序分发给我的客户,所以我不能使用硬编码文件路径。
感谢任何帮助!
您不能使用 preprocessor. The preprocessor is executed on compile time. So even if you fix the path problem (e.g. using SourcePath
preprocessor variable),这无济于事,因为您将在 编译 安装程序的机器上读取 INI 文件。不在安装程序 执行 .
您必须使用 Pascal 脚本和 scripted constant. Use GetIniString
function to read the INI file and src
constant 来引用源目录。
[Setup]
AppVersion={code:GetAppVersion}
[Code]
function GetAppVersion(Param: string): string;
var
IniPath: string;
begin
IniPath := ExpandConstant('{src}\ver.ini');
Result := GetIniString('Version', 'Ver', 'Unknown', IniPath);
end;
如果找不到版本,您可能想要中止安装:
function GetAppVersion(Param: string): string;
var
IniPath: string;
begin
IniPath := ExpandConstant('{src}\ver.ini');
Result := GetIniString('Version', 'Ver', '', IniPath);
if Result = '' then RaiseException('Cannot find version');
end;