4

对不起我的英语不好。

您好,我的安装程序会下载文件,通过添加“IDP:Inno Setup 的下载插件”,我有一个问题,因为它们是以 .zip 格式下载的,因此需要解压缩,是否可以在应用程序所在的位置解压? 这是一个附加组件还是什么?请帮忙。

4

1 回答 1

4

您可以发送您选择的解压缩工具并将其用于提取。

我倾向于发布“7za”(7zip 的命令行版本),因为我发现它的提取速度非常好(并且比解压缩更好)。

首先,您将提取工具集成到您的安装程序中。

    [Files]
    Source: ..\utils\unzip\7za.exe; DestDir: {tmp}; Flags: dontcopy
    Source: and some zip files ...

注意dontcopy. 这不会在正常文件复制阶段将文件复制到用户系统,而是将文件静态编译到安装中。

其次,您可能会在您的部分中添加一些DoUnzip辅助方法[Code]

它将使用临时文件夹中的工具。

procedure DoUnzip(source: String; targetdir: String);
var 
    unzipTool: String;
    ReturnCode: Integer;
begin
    // source contains tmp constant, so resolve it to path name
    source := ExpandConstant(source);

    unzipTool := ExpandConstant('{tmp}\7za.exe');

    if not FileExists(unzipTool)
    then MsgBox('UnzipTool not found: ' + unzipTool, mbError, MB_OK)
    else if not FileExists(source)
    then MsgBox('File was not found while trying to unzip: ' + source, mbError, MB_OK)
    else begin
         if Exec(unzipTool, ' x "' + source + '" -o"' + targetdir + '" -y',
                 '', SW_HIDE, ewWaitUntilTerminated, ReturnCode) = false
         then begin
             MsgBox('Unzip failed:' + source, mbError, MB_OK)
         end;
    end;
end;

第三,您提取解压缩工具,然后是 zip,然后您只需在 zip 上使用 DoUnzip() 方法。这些命令用于该[Code]部分。

  // extract 7za to temp folder
  ExtractTemporaryFile('7za.exe');

  // extract the zip to the temp folder (when included in the installer)
  // skip this, when the file is downloaded with IDP to the temp folder
  //ExtractTempraryFile('app.zip);

  targetPath := ExpandConstant('{tmp}\');

  // unzip the zip in the tempfolder to your application target path
  DoUnzip(targetPath + 'app.zip', ExpandConstant('{app}'));
于 2015-04-06T23:50:00.980 回答