gpt4 book ai didi

inno-setup - Inno Setup 从 .ini 读取值

转载 作者:行者123 更新时间:2023-12-03 11:19:10 27 4
gpt4 key购买 nike

我想从 .ini 文件中读取值。然后写一个条件——如果这个值等于“1”,那么做某事(执行一个 Action )。
我试过 getinistring,但我没有得到任何值(只显示默认值)。
而且我不知道如何在下面附加的代码中实现 readini。
谢谢你的帮助,
是初学者:)

//编辑
这是一个代码:

#include ReadReg(HKEY_LOCAL_MACHINE,'Software\Sherlock Software\InnoTools\Downloader','ScriptPath','');
#include ReadReg(HKEY_LOCAL_MACHINE,'Software\Sherlock Software\InnoTools\Tray','ScriptPath','');

[Languages]
Name: english; MessagesFile: compiler:Default.isl

[Code]
function isxdl_Download(hWnd: Integer; URL, Filename: AnsiString): Integer;
external 'isxdl_Download@files:isxdl.dll stdcall';
function isxdl_SetOption(Option, Value: AnsiString): Integer;
external 'isxdl_SetOption@files:isxdl.dll stdcall';
var
a :string;
b :string;

//Downloading a component depending on component choice in another setup(read from .ini)
procedure CurStepChanged(CurStep: TSetupStep);
begin
a:=GetIniString('Select', 'First', 'false', '{pf}/SP_Settings.ini');
b:=GetIniString('Select', 'Should', 'true', {pf}\SP_Settings.ini');

begin
if CompareStr(a,b)=0 then
if CurStep=ssInstall then begin
isxdl_SetOption('title', 'File Download');
isxdl_SetOption('label', 'Download');
isxdl_SetOption('description', 'Setup is downloading a file.');
isxdl_Download(0,'url', ExpandConstant('{app}\x.rar'));
end;
end;
end;

[Files]
Source: C:\Documents and Settings\user\Pulpit\XML\Project\isxdl.dll; DestDir: {tmp}; Flags: dontcopy

最佳答案

有 Pascal Script 函数,如 GetIniIntGetIniString您可以使用从 ini 文件中读取。见 this reference .

我想指出的是,我在 OP 改变他的问题以告诉我们他已经尝试过 GetIniString 之前写了这个回复。和 ReadIni职能。所以是的:我在写这个答案之前确实阅读了这个问题:-)

从您发布的代码中,我可以看到您正在尝试从 Program Files 文件夹中读取 ini 文件。然而,这仅在使用 ExpandConstant 时有效。函数,所以它应该读

a:=GetIniString('Select', 'First', 'false', ExpandConstant('{pf}') + '\SP_Settings.ini');
b:=GetIniString('Select', 'Should', 'true', ExpandConstant('{pf}') + '\SP_Settings.ini');

关于inno-setup - Inno Setup 从 .ini 读取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9802581/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com