您可以修改InnoSetup中的默认文件夹选择对话框吗?我主要需要在此对话框中更改文件夹路径文本框。当用户单击“下一步”按钮时,需要检查给定的文件夹路径是否为“C:\ Data1”。如果给出了此路径,则需要将其更改为“C:\ Data”。
答案 0 :(得分:0)
此解决方案有效,
[code]
function NextButtonClick(CurPageID: Integer): Boolean;
begin
case CurPageID of
wpSelectDir:
begin
if WizardForm.DirEdit.Text = 'C:\Data1' then
WizardForm.DirEdit.Text := 'C:\Data';
end;
end;
end;
感谢这些链接,
Get the path in the wpSelectDir before {app} is set Inno Setup