インストーラーでファイルが宛先の場所に存在するかどうかを確認する必要があります。存在しない場合、インストールは中止されます。私のプロジェクトは更新パッチなので、アプリケーションのメイン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;