使用Delphi的7-Zip?

时间:2008-09-16 16:57:04

标签: delphi 7zip

我想使用Delphi的7-Zip DLL但无法找到合适的文档或示例。有谁知道如何使用Delphi的7-Zip DLL?

7 个答案:

答案 0 :(得分:27)

自版本1.102起,JEDI Code Library支持7-Zip单元中内置的JclCompression。但是,我还没有用过它。

答案 1 :(得分:22)

扩展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;

答案 2 :(得分:6)

答案 3 :(得分:4)

Zip和7z没有DLL,试用Synopse: http://synopse.info/forum/viewtopic.php?pid=163

答案 4 :(得分:4)

Delphi现在在XE2中使用TZipFile提供原生的跨平台zip支持:

How to extract zip files with TZipFile in Delphi XE2 and FireMonkey

答案 5 :(得分:1)

如果您打算仅使用7Zip进行zip和解压缩,请查看TZip组件。 我为自己的目的编写了一个小包装器,您可以在Zipper.pas文件中找到它,随时可以重复使用。

答案 6 :(得分:0)

我尝试了很多解决方案并遇到了问题,这个问题很有效。

下载https://github.com/zedalaye/d7zip 将7z.dll和sevenzip.pas复制到您的项目目录中,并将sevenzip.pas添加到您的项目中。

然后你可以用它来解压缩:

using sevenzip;

procedure Unzip7zFile (zipFullFname:string);
  var
    outDir:string;
  begin
    with CreateInArchive(CLSID_CFormat7z) do
    begin  
      OpenFile(zipFullFname);
      outDir := ChangeFileExt(zipFullFname, '');
      ForceDirectories (outDir);
      ExtractTo(outDir);
    end;
  end;

用法:

Unzip7zFile(ExtractFilePath(Application.ExeName) + 'STR_SI_FULL_1000420.7z');