Using 7-Zip from Delphi?

前端 未结 7 2319
醉梦人生
醉梦人生 2020-11-30 03:22

I would like to use the 7-Zip DLLs from Delphi but have not been able to find decent documentation or examples. Does anyone know how to use the 7-Zip DLLs from Delphi?

7条回答
  •  [愿得一人]
    2020-11-30 03:49

    Expanding on Oliver Giesen's answer, as with a lot of the JEDI Code Library, I couldn't find any decent documentation, but this works for me:

    uses
       JclCompression;
    
    procedure TfrmSevenZipTest.Button1Click(Sender: TObject);
    const
       FILENAME = 'F:\temp\test.zip';
    var
       archiveclass: TJclDecompressArchiveClass;
       archive: TJclDecompressArchive;
       item: TJclCompressionItem;
       s: String;
       i: Integer;
    begin
       archiveclass := GetArchiveFormats.FindDecompressFormat(FILENAME);
    
       if not Assigned(archiveclass) then
          raise Exception.Create('Could not determine the Format of ' + FILENAME);
    
       archive := archiveclass.Create(FILENAME);
       try
          if not (archive is TJclSevenZipDecompressArchive) then
             raise Exception.Create('This format is not handled by 7z.dll');
    
          archive.ListFiles;
    
          s := Format('test.zip Item Count: %d'#13#10#13#10, [archive.ItemCount]);
    
          for i := 0 to archive.ItemCount - 1 do
          begin
             item := archive.Items[i];
             case item.Kind of
                ikFile:
                   s := s + IntToStr(i+1) + ': ' + item.PackedName + #13#10;
                ikDirectory:
                   s := s + IntToStr(i+1) + ': ' + item.PackedName + '\'#13#10;//'
             end;
          end;
    
          if archive.ItemCount > 0 then
          begin
    //         archive.Items[0].Selected := true;
    //         archive.ExtractSelected('F:\temp\test');
    
             archive.ExtractAll('F:\temp\test');
          end;
    
          ShowMessage(s);
       finally
          archive.Free;
       end;
    end;
    

提交回复
热议问题