How do I compress multiple files into a single archive with Delphi - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T09:45:23Zhttp://stackoverflow.com/feeds/question/400627http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi7How do I compress multiple files into a single archive with DelphiMick2008-12-30T15:53:56Z2009-01-08T13:29:15Z
<p>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 :-)</p>
<p>My primary requirements are:</p>
<ol>
<li>Possible to encrypt the archive</li>
<li>Can create common archives that can be opened by anyone with a copy of WinZip</li>
</ol>
<p>Does anyone have suggestions with components that they have used? Please feel free to suggest free as well as commercial components/libraries.</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/400654#4006542Answer by Craig Stuntz for How do I compress multiple files into a single archive with DelphiCraig Stuntz2008-12-30T16:01:24Z2008-12-30T16:01:24Z<p>Have you looked at the answers to <a href="http://stackoverflow.com/questions/74519/using-7zip-from-delphi">this question</a>?</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/400660#4006608Answer by schnaader for How do I compress multiple files into a single archive with Delphischnaader2008-12-30T16:02:22Z2008-12-30T16:38:52Z<p>Perhaps <a href="http://www.delphizip.org/" rel="nofollow">DelphiZip</a> is what you are looking for, it seems to support encryption, too, and is WinZip compatible. It is released under LGPL.</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/400665#400665-1Answer by John Paul Jones for How do I compress multiple files into a single archive with DelphiJohn Paul Jones2008-12-30T16:03:32Z2008-12-30T16:03:32Z<p>Shell to the command line and get a free zip program to do the work?</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/400828#4008280Answer by dummzeuch for How do I compress multiple files into a single archive with Delphidummzeuch2008-12-30T16:56:16Z2008-12-30T16:56:16Z<p>There are <a href="http://www.info-zip.org/" rel="nofollow">infozips</a> 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.</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/400857#4008570Answer by Guillermo Bonvehi for How do I compress multiple files into a single archive with DelphiGuillermo Bonvehi2008-12-30T17:05:17Z2008-12-30T17:05:17Z<p>You could use 7zip (LZMA) bindings for Pascal (compatible with Delphi): <a href="http://www.birtles.org.uk/programming/" rel="nofollow">http://www.birtles.org.uk/programming/</a></p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/400915#4009154Answer by Erick Sasse for How do I compress multiple files into a single archive with DelphiErick Sasse2008-12-30T17:24:29Z2008-12-30T17:24:29Z<p>I recommend <a href="http://www.componentace.com/zip_component_zip_delphi_zipforge.htm" rel="nofollow">ZipForge</a> from ComponentAce.</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/401110#4011100Answer by skamradt for How do I compress multiple files into a single archive with Delphiskamradt2008-12-30T19:00:15Z2008-12-30T19:00:15Z<p>Another Delphi resource to look at would be <a href="http://www.innosetup.com/isdl.php" rel="nofollow">InnoSetup</a>. 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,</p>
<p>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. </p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/401736#4017362Answer by inzKulozik for How do I compress multiple files into a single archive with DelphiinzKulozik2008-12-30T22:39:11Z2008-12-30T22:39:11Z<p>You can also use <a href="http://sourceforge.net/projects/tpabbrevia/" rel="nofollow">Abbrevia</a></p>
<pre><code>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;
</code></pre>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/404406#4044062Answer by Alin Sfetcu for How do I compress multiple files into a single archive with DelphiAlin Sfetcu2009-01-01T01:58:45Z2009-01-01T01:58:45Z<p>I`m using <a href="http://help.madshi.net/madZipUnit.htm#Zip" rel="nofollow">madZip</a> from <a href="http://www.madshi.net" rel="nofollow">madCollection</a></p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/417151#4171510Answer by PatrickvL for How do I compress multiple files into a single archive with DelphiPatrickvL2009-01-06T16:16:31Z2009-01-06T16:16:31Z<p>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 : <a href="http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclCompression.pas?view=markup" rel="nofollow">http://jcl.svn.sourceforge.net/viewvc/jcl/trunk/jcl/source/common/JclCompression.pas?view=markup</a></p>
<p>Note, it's compatible with 7-zip DLL version 4.64 - newer versions might not be backwards-compatible...</p>
http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi/424215#4242152Answer by vcldeveloper for How do I compress multiple files into a single archive with Delphivcldeveloper2009-01-08T13:29:15Z2009-01-08T13:29:15Z<p><a href="http://www.vclcomponents.com/Delphi/Compression__Encryption/KAZip-info.html" rel="nofollow">KaZip</a> is an open-source ZIP archiver. Here is its description:</p>
<blockquote>
<p>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 - <strong>no DLL, ActiveX or other
external libraries</strong>.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</p>
</blockquote>
<p>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.</p>
<p>Regards</p>