17

インストーラーでファイルが宛先の場所に存在するかどうかを確認する必要があります。存在しない場合、インストールは中止されます。私のプロジェクトは更新パッチなので、アプリケーションのメインexeがインストール先にない場合は、インストーラーが更新ファイルをインストールしないようにします。これどうやってするの?

誰かがWindowsレジストリを介してファイルのバージョンをチェックするコードの例を与えることができますか?

[Files]
Source C:\filename.exe; DestDir {app}; Flags: ignoreversion; BeforeInstall: CheckForFile;

[code]

procedure CheckForFile(): Boolean;
begin
  if (FileExists('c:\somefile.exe')) then
  begin
    MsgBox('File exists, install continues', mbInformation, MB_OK);
    Result := True;
  end
  else
  begin
    MsgBox('File does not exist, install stops', mbCriticalError, MB_OK);
    Result := False;
  end;
end;
4

2 に答える 2

18

ユーザーが正しいフォルダーを選択するまで、ユーザーを続行させないでください。

function NextButtonClick(PageId: Integer): Boolean;
begin
    Result := True;
    if (PageId = wpSelectDir) and not FileExists(ExpandConstant('{app}\yourapp.exe')) then begin
        MsgBox('YourApp does not seem to be installed in that folder.  Please select the correct folder.', mbError, MB_OK);
        Result := False;
        exit;
    end;
end;

もちろん、適切なフォルダーを自動的に選択することもお勧めします。レジストリから正しい場所を取得します。

于 2012-10-19T05:47:19.803 に答える
5

別の解決策は次のInitializeSetup()とおりです。

クレジット: Manfred

[code]
   function InitializeSetup(): Boolean;
   begin
     if (FileExists(ExpandConstant('{pf}\{#MyAppName}\somefile.exe'))) then
     begin
       MsgBox('Installation validated', mbInformation, MB_OK);
       Result := True;
     end
     else
     begin
       MsgBox('Abort installation', mbCriticalError, MB_OK);
       Result := False;
     end;
   end;
于 2016-07-18T20:27:01.773 に答える