我正在使用 Inno-Setup 版本 5.5.3(a)。
[Files]
Source: "C:\GPT\GPT.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "C:\GPT\GPT.dat"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
我想将“GPT.dat”文件安装到名为“GPT”的自定义文件夹中的用户 AppData 文件夹中
例如 AppData\GPT\
例如,在我的 delphi 代码中,我在用户 AppData 路径中创建了一个名为“GPT”的文件夹。这些是我想放置文件的地方
var
path: array[0..MAX_PATH] of char;
SHGetFolderPath(0, CSIDL_APPDATA, 0, SHGFP_TYPE_CURRENT, @path);
userPath:= Path;
UserPath:= UserPath + '\GPT\';
if not DirectoryExists(UserPath) then
CreateDir(UserPath);
谁能告诉我如何编辑我的 Inno 脚本的 [Files] 部分来实现这一点?
谢谢