Return to index

zip functions

bool = zip_add(zip_filename, files)

top

Add files to existing ZIP archive.


bool = zip_create(zip_filename, files)

top

Create ZIP archive from list of files.


bool = zip_create_from_dir(zip_filename, dirpath)

top

Create ZIP archive from directory contents.


bool = zip_extract(zip_filename, dest_dir)

top

Extract ZIP archive to destination directory.


bool = zip_extract_file(zip_filename, files_to_extract, dest_dir)

top

Extract specific files from ZIP archive to destination directory.


[]string = zip_list(zip_filename)

top

List contents of ZIP archive.


bool = zip_remove(zip_filename, files)

top

Remove files from ZIP archive.