Inno Setup,仅在不存在的目录上安装
Inno Setup, install only on a non existent directory
我不允许在现有目录或至少非空目录上安装。
现在我正在使用此解决方法只是为了检查程序是否安装在用户选择的目录中,但如果它是未安装程序的目录或非空目录,则这不起作用。
function NextButtonClick(PageId: Integer): Boolean;
begin
Result := True;
if (PageId = wpSelectDir) and FileExists(ExpandConstant('{app}\some_app_file')) then
begin
MsgBox('Warning message, cannot continue.', mbError, MB_OK);
Result := False;
exit;
end;
end;
我有 DirExistsWarning=yes
指令,但还不够。
感谢您的帮助。
使用DirExists(ExpandConstant('{app}'))
检查所选目录是否存在。
我不允许在现有目录或至少非空目录上安装。
现在我正在使用此解决方法只是为了检查程序是否安装在用户选择的目录中,但如果它是未安装程序的目录或非空目录,则这不起作用。
function NextButtonClick(PageId: Integer): Boolean;
begin
Result := True;
if (PageId = wpSelectDir) and FileExists(ExpandConstant('{app}\some_app_file')) then
begin
MsgBox('Warning message, cannot continue.', mbError, MB_OK);
Result := False;
exit;
end;
end;
我有 DirExistsWarning=yes
指令,但还不够。
感谢您的帮助。
使用DirExists(ExpandConstant('{app}'))
检查所选目录是否存在。