我想使用Delphi的7-Zip DLL但无法找到合适的文档或示例.有谁知道如何使用Delphi的7-Zip DLL?
从版本1.102开始,JEDI代码库支持内置于JclCompression单元的7-Zip.但是,我还没有用过它.
扩展了Oliver Giesen的答案,就像许多JEDI代码库一样,我找不到任何体面的文档,但这对我有用:
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;
7 Zip插件API
http://www.progdigy.com/?page_id=13