Module Zip_wrapper


module Zip_wrapper: sig .. end
wrapper for reading zipped files

during compile time this file or wrapper_disabled/Zip_wrapper is chosen, depending on if the camlzip library is installed or not.

if available, this module is chosen, which is just a wrapper to camlzip.



Types

type in_file 
a zip file/archive
type entry 
an entry/zipped file in a zip file/archive

Functions

val enabled : bool
true, as zip support is available.
val open_in : string -> in_file
opens zip file/archive with given file name
val find_entry : in_file -> string -> entry
finds entry with given file name in zipped file/archive
val read_entry : in_file -> entry -> string
reads and uncompresses a zipped entry