gpt4 book ai didi

inno-setup - 获取 setup.exe 文件的文件名

转载 作者:行者123 更新时间:2023-12-05 00:29:59 24 4
gpt4 key购买 nike

我如何获得安装文件本身的 Exe-Name?

我想将 exe 文件名本身写入 inno 安装脚本中的变量。

Inno 安装版本 5.5.3

最佳答案

您可以从常量 {srcexe} 中提取安装 exe 名称并写入作为自定义变量字符串。

例子:

ExtractFileName(ExpandConstant('{srcexe}'))

在代码中:
   [Code]
function InitializeSetup: Boolean;
var
SetupName : String;
begin
SetupName := ExtractFileName(ExpandConstant('{srcexe}'));
MsgBox(SetupName, mbInformation, MB_OK);
Result := False;
end;

{srcexe}

The full pathname of the Setup program file, e.g. "C:\SETUP.EXE".


更多信息 Inno Setup's Constants

关于inno-setup - 获取 setup.exe 文件的文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16581675/

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