アプリケーションを更新するには、TMS ソフトウェアの TWebUpdate を使用しています。
WebUpdate1.URL:='http://myserver.com/update.inf';
if WebUpdate1.NewVersionAvailable then
begin
case Application.MessageBox(PChar('The new version '+WebUpdate1.NewVersionInfo+' is available! Update it?'),
'Updates Are Available', MB_YESNO + MB_ICONQUESTION) of
IDYES:
begin
SetCurrentDir(ExtractFilePath(Application.ExeName));
WebUpdate1.DoUpdate;
WebUpdate1.DoRestart;
end;
IDNO:
begin
Application.Terminate;
end;
end;
update.info ファイルは次のとおりです。
[update]
newversion=2.1.0.37
localversion=client_app.exe
[files]
count=1
[file1]
url=http://myserver.com/client_app.exe
newversion=2.1.0.37
localversion=client_app.exe
mandatory=1
[application]
appupdate=1
silentrestart=1
appname=client_app.exe
appcomps=client_app.ex_
実際、アップデートは正常に機能しますが (exe ファイルがダウンロードされ、アプリケーションが再起動されます)、exe ファイルはダウンロードされたファイルに置き換えられません。どこに問題がある可能性がありますか?前もって感謝します。