How do I compress multiple files into a single archive with Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T22:19:05Z http://stackoverflow.com/feeds/question/400627 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/400627/how-do-i-compress-multiple-files-into-a-single-archive-with-delphi 7 How do I compress multiple files into a single archive with Delphi Mick 2008-12-30T15:53:56Z 2009-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#400654 2 Answer by Craig Stuntz for How do I compress multiple files into a single archive with Delphi Craig Stuntz 2008-12-30T16:01:24Z 2008-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#400660 8 Answer by schnaader for How do I compress multiple files into a single archive with Delphi schnaader 2008-12-30T16:02:22Z 2008-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 -1 Answer by John Paul Jones for How do I compress multiple files into a single archive with Delphi John Paul Jones 2008-12-30T16:03:32Z 2008-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#400828 0 Answer by dummzeuch for How do I compress multiple files into a single archive with Delphi dummzeuch 2008-12-30T16:56:16Z 2008-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#400857 0 Answer by Guillermo Bonvehi for How do I compress multiple files into a single archive with Delphi Guillermo Bonvehi 2008-12-30T17:05:17Z 2008-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#400915 4 Answer by Erick Sasse for How do I compress multiple files into a single archive with Delphi Erick Sasse 2008-12-30T17:24:29Z 2008-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#401110 0 Answer by skamradt for How do I compress multiple files into a single archive with Delphi skamradt 2008-12-30T19:00:15Z 2008-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#401736 2 Answer by inzKulozik for How do I compress multiple files into a single archive with Delphi inzKulozik 2008-12-30T22:39:11Z 2008-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#404406 2 Answer by Alin Sfetcu for How do I compress multiple files into a single archive with Delphi Alin Sfetcu 2009-01-01T01:58:45Z 2009-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#417151 0 Answer by PatrickvL for How do I compress multiple files into a single archive with Delphi PatrickvL 2009-01-06T16:16:31Z 2009-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#424215 2 Answer by vcldeveloper for How do I compress multiple files into a single archive with Delphi vcldeveloper 2009-01-08T13:29:15Z 2009-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>