gpt4 book ai didi

inno-setup - 安装文件名是否可以从可执行文件版本号导出?

转载 作者:行者123 更新时间:2023-12-04 02:44:38 25 4
gpt4 key购买 nike

是否可以让 Inno Setup 读取主可执行文件的文件版本并将创建的安装程序的名称设置为“myapp_setup_1_0_3708_19805.exe”之类的名称?

最佳答案

你应该可以这样做:

(我最近没有尝试过,但在 2007 年我以这种方式使用 InnoSetup 时它肯定可以工作。如果 Inno 的语法从那时起发生了变化,它可能需要一些细微的变化。)

#define MainBinaryName  "MyMainFile.exe"
#define SetupBaseName "setup_mytool_"
#define AppVersion GetFileVersion(AddBackslash(SourcePath) + MainBinaryName)
#define AVF1 Copy(AppVersion, 1, Pos(".", AppVersion) - 1) + "_" + Copy(AppVersion, Pos(".", AppVersion) + 1)
#define AVF2 Copy(AVF1, 1, Pos(".", AVF1 ) - 1) + "_" + Copy(AVF1 , Pos(".", AVF1 ) + 1)
#define AppVersionFile Copy(AVF2, 1, Pos(".", AVF2 ) - 1) + "_" + Copy(AVF2 , Pos(".", AVF2 ) + 1)

[Setup]
OutputBaseFilename={#SetupBaseName + AppVersionFile}

如果 MyMainFile.exe 是 1.2.3.4 版,那么应该调用完成的安装程序 setup_mytool_1_2_3_4.exe

AVF1、AVF2 等只是用下划线 (_) 替换版本号中的点 (.) 以避免导致无法处理文件名中的大量点的问题。

关于inno-setup - 安装文件名是否可以从可执行文件版本号导出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2329979/

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