Difference between revisions of "zip"

From Lazarus wiki
Jump to navigationJump to search
(Add See also section and categorise page)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
== Zip ==
+
 
The zip unit is included in a package which contains several routines to unzip files on every Lazarus supported platforms. There are 3 units:
+
The zip unit is included in a package which contains several routines to unzip files on every Lazarus supported platforms. There are 4 units:
  
 
* '''zip''' a unit which implements an zip mechanism with native Pascal links.  
 
* '''zip''' a unit which implements an zip mechanism with native Pascal links.  
 
* '''unzip''' a unit which implements an unzip mechanism with native Pascal links.   
 
* '''unzip''' a unit which implements an unzip mechanism with native Pascal links.   
 
* '''zipbase''' a unit which defines the interface for the info-zip unzip library.  
 
* '''zipbase''' a unit which defines the interface for the info-zip unzip library.  
* '''ziputils''' contains some type definitions for the unzip unit.  
+
* '''ziputils''' contains some tools for the unzip unit.  
  
 
The zip library unit is included in Lazarus 2.
 
The zip library unit is included in Lazarus 2.
 +
 +
== See also ==
 +
 +
* [[unzip]]
 +
* [[paszlib|paszlib: Object oriented zip file handling which does not require external libraries]]
 +
 +
Go back to [[Package_List|Packages List]]
 +
 +
[[Category:FPC]]
 +
[[Category:Packages]]

Latest revision as of 13:33, 2 August 2020

The zip unit is included in a package which contains several routines to unzip files on every Lazarus supported platforms. There are 4 units:

  • zip a unit which implements an zip mechanism with native Pascal links.
  • unzip a unit which implements an unzip mechanism with native Pascal links.
  • zipbase a unit which defines the interface for the info-zip unzip library.
  • ziputils contains some tools for the unzip unit.

The zip library unit is included in Lazarus 2.

See also

Go back to Packages List