Click here to Skip to main content
15,868,016 members
Articles / Desktop Programming / ATL
Article

SAWZip - zip file manipulation control

Rate me:
Please Sign up or sign in to vote.
4.56/5 (6 votes)
29 Aug 2001 355.6K   5.4K   58   77
An ATL based control for reading and writing zip files.

Introduction

While I was developing my Java Class Browser (JCB) I needed a control or sourcecode (C++) to read jar-files. I searched the web and I didn't find any good freeware to resolve this problem. What I found was the zlib-compression library of Jean-loup Gailly and Mark Adler. It was not easy to figure it out how it worked. After a while I found the library written by Tadeusz Dracz. He uses the zlib-compression in a MFC library. It gave me a good idea on how to use the zlib-compression library. The problem with his library was that it was written with MFC, and I want to avoid using MFC because I JCB is a WTL-program. That's why I started to develop an ATL-control based on the code I found in the sourcecode of Tadeusz Dracz.

You can use this control with Visual C++ and Visual Basic 6.0. The control has been tested on Windows 98 and Windows NT. The UNICODE version of the application is not yet tested on a Windows NT Platform.

Archive Object

Properties

Property Type R/W Description
Name String R The name of the zipfile.
Files Files Object R A collection of file-objects.
Comment String R/W The comment for the zipfile.
ReadOnly Boolean R True when the zip you opened is read-only. Test on this flag before you want to compress some files.

Methods

Name Returns Parameters Description
Close / / Closes the zipfile.
Create / ByVal aName as String The name of the zipfile to create
Open / ByVal aName as String The name of the zipfile to open

Files Object

Properties

Property Type R/W Description
Count long R Number of files in the archive.

Methods

Name Returns Parameters Description
Add / ByVal newVal as File Adds a file to the archive. When there's already a file compressed with the same name it will be override this file.
AddFileByName / ByVal aName as String,
ByVal level as Integer,
ByVal fullPath as Boolean,
ByVal refresh as Boolean
This method can add files with wildcards. For level and fullPath see File Object for more information. When refresh is set to true, the file with the same name in the archive is overwritten. When it is set to false, the file will be skipped.

The following example does the following: Adding all C++ sources in the current-directory to the archive. Overwrite the current files in the archive.
zip.Files.AddFileByName "*.cpp", 1, true, true
Item File ByVal index as Long Returns the file on position index.
Remove / ByVal index as Long Removes the file with position index from the archive.

File Object

Properties

Property Type R/W Description
Name String R/W The name of the file. When added with fullPath set to false, the path will not be stored in the archive.
Directory Boolean R Returns true when the file is a directory.
CompressedSize Long R The size of the file when compressed.
UncompressedSize Long R The size of the file when not compressed.
Level Integer R/W The level used to perform compression. A value in the range of 0 - 9. 0 is no compression at all. 1 gives best speed, 9 gives best compression. This can only be set when the file is not yet stored in the archive.
Crc32 Long R Returns the crc checkum value.
Comment String R/W Returns or sets the comment. The comment can only be set when the file is not yet in stored in the archive.
FullPath Boolean R/W When stored to the archive and FullPath is false the path-information will be discarded. When the file is extracted and the FullPath is false the file will be extracted without the path-information.
Index Long R The index of this file object in the Files collection. This will be -1 when the file is not yet stored in the archive.

Methods

Name Returns Parameters Description
Extract / ByVal aPath as String Extract the file into the specified path. When FullPath is set to false, the file will be stored without the path-information.

Remarks

This control uses the dll-version of the zlib-compression library. When you install this control the zlib.dll must be reachable. This control makes heavy use of private interfaces to communicate between the different objects. You can read more about this on my page of SAWEditListCtrl on how to accomplish this.

Resources

Here is a list of resources I used to develop this control:

The MFC Library of Tadeusz Dracz.
The zlib-compression home page.

Updates

27-Dec-2000    Version 1.0 Released.

8-Mar-2001    Version 1.1

  1. Add properties to the fileobject to retrieve the dates of the files
  2. Extracting to a stringbuffer

18-Apr-2001    Version 1.2

  1. Solved a bug in AddFileByName.

23-May-2001    Version 1.4

  • Added a new property for testing on readonly zip-files. Now you can extract from a file from readonly-files.
  • Resolved a memory-leak after extracting a file. (Thanks go to Brad Gutilla).

28-Jun-2001    Version 1.6

  • Version 1.6: Bug resolved in the extract-method. When fullpath was true and the directory didn't exist a Can't create file occured. Now the fullpath is created before extracting. (Thanks Nat Dickinson)

30-Aug-2001 Version 2.0

  • Version 2.0: Solved the comment-bug on the archive-object. Compatible for Win95-users. (Thanks to Frederic St-Laurent)

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Belgium Belgium
Programmer since 1991 using C/C++/Visual Basic and Java. Playing with wxWindows at home.

Comments and Discussions

 
GeneralRe: SAWZip 2.6 Pin
Member 735101724-Oct-11 0:45
Member 735101724-Oct-11 0:45 
QuestionIs there a way to add whole directory using AddFileByName ? Pin
mchan20-Aug-02 12:37
mchan20-Aug-02 12:37 
AnswerRe: Is there a way to add whole directory using AddFileByName ? Pin
mchan21-Aug-02 17:37
mchan21-Aug-02 17:37 
GeneralRe: Is there a way to add whole directory using AddFileByName? /// Relative path Pin
agyklon13-Sep-02 8:54
sussagyklon13-Sep-02 8:54 
GeneralRe: Is there a way to add whole directory using AddFileByName? /// Relative path Pin
Franky Braem14-Sep-02 2:41
Franky Braem14-Sep-02 2:41 
GeneralRe: Is there a way to add whole directory using AddFileByName? /// Relative path Pin
Anonymous15-Sep-02 9:48
Anonymous15-Sep-02 9:48 
GeneralSawZip Pin
Member 46014325-Jul-02 3:17
Member 46014325-Jul-02 3:17 
GeneralSelf Extracting Pin
bibilm16-May-02 5:22
bibilm16-May-02 5:22 
GeneralErrorr in windows 2000 Pin
randheer10-Jan-02 1:29
randheer10-Jan-02 1:29 
GeneralException when Extracting Files Pin
Thilo Krause2-Jan-02 6:00
Thilo Krause2-Jan-02 6:00 
GeneralRe: Exception when Extracting Files Pin
Hzi24-Jan-02 22:36
Hzi24-Jan-02 22:36 
GeneralBug: Handle being left opened Pin
Paul Wolfensberger28-Nov-01 4:19
Paul Wolfensberger28-Nov-01 4:19 
GeneralError in opening a file from VC++ Pin
31-Aug-01 12:15
suss31-Aug-01 12:15 
GeneralError regsvr32.exe and SAWZIP.dll Pin
20-Aug-01 3:43
suss20-Aug-01 3:43 
GeneralRe: Error regsvr32.exe and SAWZIP.dll Pin
F Braem20-Aug-01 4:00
F Braem20-Aug-01 4:00 
GeneralRe: Error regsvr32.exe and SAWZIP.dll Pin
20-Aug-01 4:56
suss20-Aug-01 4:56 
GeneralRe: Error regsvr32.exe and SAWZIP.dll Pin
21-Nov-01 11:12
suss21-Nov-01 11:12 
GeneralRe: Error regsvr32.exe and SAWZIP.dll Pin
29-Apr-02 21:49
suss29-Apr-02 21:49 
GeneralRe: Error regsvr32.exe and SAWZIP.dll Pin
DeveloperDude3-Jun-04 13:36
DeveloperDude3-Jun-04 13:36 
GeneralRe: Error regsvr32.exe and SAWZIP.dll Pin
wstein19-Aug-04 10:51
wstein19-Aug-04 10:51 
General"Unable to create the file" Pin
16-Aug-01 8:28
suss16-Aug-01 8:28 
GeneralRe: "Unable to create the file" Pin
13-Apr-02 2:25
suss13-Apr-02 2:25 
QuestionWhy this message ? Pin
13-Aug-01 6:54
suss13-Aug-01 6:54 
AnswerCorrect question Pin
13-Aug-01 6:56
suss13-Aug-01 6:56 
GeneralRe: Correct question Pin
Franky Braem13-Aug-01 22:02
Franky Braem13-Aug-01 22:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.