vote up 7 vote down star
5

I need to compress multiple files into a single archive using Delphi. I'd prefer to use freeware components or open-source components because I am very very cheap :-)

My primary requirements are:

  1. Possible to encrypt the archive
  2. Can create common archives that can be opened by anyone with a copy of WinZip

Does anyone have suggestions with components that they have used? Please feel free to suggest free as well as commercial components/libraries.

flag

11 Answers

vote up 8 vote down check

Perhaps DelphiZip is what you are looking for, it seems to support encryption, too, and is WinZip compatible. It is released under LGPL.

link|flag
vote up 2 vote down

Have you looked at the answers to this question?

link|flag
I've considered that method, but the answers focus primarily on 7-zip type solutions. I'm also looking for some comments anyone has with their experience using these tools. – Mick Dec 30 at 16:06
The advantage of 7-zip is that it works really, really well on any ZIP you ever throw at it. Other components tend to work mostly OK for most ZIPs. – Craig Stuntz Dec 30 at 16:41
one other advantage is 7-zip does a better job of compressing the file - The 7z files are at least 30% smaller than a the zip file – Charles Faiga Dec 30 at 17:12
vote up -1 vote down

Shell to the command line and get a free zip program to do the work?

link|flag
That's not what I'm looking for. I want more control in order to retrieve such things as real progress indicators, as well as having no external application dependencies. – Mick Dec 30 at 16:16
vote up 0 vote down

There are infozips zip32 and unzip32 dlls. They can be used from Delphi (even from Visual Basic), there are interface units/modules for both. The interface isn't as good as I would have liked it, but it works.

link|flag
vote up 0 vote down

You could use 7zip (LZMA) bindings for Pascal (compatible with Delphi): http://www.birtles.org.uk/programming/

link|flag
vote up 4 vote down

I recommend ZipForge from ComponentAce.

link|flag
Agreed. It also supports Unicode file names. – TOndrej Jan 8 at 14:06
vote up 0 vote down

Another Delphi resource to look at would be InnoSetup. The source code is available and with a little work might give you an edge up on what your trying to do. There is an option to create self extracting zip archives which are compatible with WinZip,

My thoughts are not to use the program, but to use his source as a starting point since it is very heavily tested and extremely solid.

link|flag
vote up 2 vote down

You can also use Abbrevia

with TAbZipper.Create(nil) do
try
  AutoSave := False;
  DeflationOption := doSuperFast;
  StoreOptions := [soStripDrive, soRemoveDots, soRecurse, soFreshen, soReplace];
  Password := 'SecretPassword';

  OnArchiveProgress := ArchiveProgress; //procedure ArchiveProgress(Sender : TObject; Progress : Byte; var Abort : Boolean);

  BaseDirectory := 'c:\' ;
  FileName := 'c:\windows.zip';
  try
    AddFiles('c:\windows\*.*', 0);
    Save;
  finally
    CloseArchive;
  end;

finally
  Free;
end;
link|flag
it looks like abbrevia hasn't been ported to delphi 2009. – X-Ray Oct 8 at 21:04
Check this link songbeamer.com/delphi – inzKulozik Oct 8 at 21:24
thank you inzKulozik. that's an interesting site. – X-Ray Oct 21 at 17:57
vote up 2 vote down

I`m using madZip from madCollection

link|flag
I wasn't even aware of this one. Nice! – Mick Jan 2 at 18:00
vote up 0 vote down

I'm surprised no-one has mentioned JclCompression yet - it's part of the well-known Jedi Code Library (JCL). Here's a view of the unit itself : http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclCompression.pas?view=markup

Note, it's compatible with 7-zip DLL version 4.64 - newer versions might not be backwards-compatible...

link|flag
vote up 2 vote down

KaZip is an open-source ZIP archiver. Here is its description:

KAZIP is fast, simple ZIP archiver and dearchiver which uses most popular ZIP format.Inflate - Deflate zip compression format (no encryption support and no multidisk support).KAZip is totaly based on Delphi VCL - no DLL, ActiveX or other external libraries.KAZip is totaly stream oriented so you can deal with data only in memory without creating temporary files, etc. If you need to add zip-unzip functionality to your application,KAZIP is the right solution. Additional ZipListView and ZipTreeView components for easy visualisation.Functionality:Zip-Unzip using Inflate-DeflateBZip2 unzipping trough usage of BZIP2 units from Edison Mera Menndez.Functions:Adding Files, Folders, Streams; Selecting, Deselecting, Checking;Extracting to files and streams;Delete and Rename filesCreate, Delete and Rename foldersTest, RepairMany new properties and methods, improved speed.A very complex Zip Browser demo application is included

It is not compatible with Delphi 2009 yet, but with some minor changes in the source code, you can make it work in Delphi 2009 too. Actually, that's what I did.

Regards

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.