Concept Framework 2.0 documentation Contents | Index

standard.arch.zip

Static library name Version Deprecated
standard.arch.zip version 1.0 no

Import library : standard.arch.zip
(you must include this at the top of your source: "import standard.arch.zip" (no quotes)


Require : standard.arch.zip

Description:
ZIP Library based on libzip.

libzip documentation is available at http://www.nih.at/libzip/libzip.html.

TODO: Documentation


Contained static functions:
_zip_get_name TODO: Document this
_zip_name_locate TODO: Document this
_zip_replace TODO: Document this
_zip_unchange TODO: Document this
zip_add TODO: Document this
zip_close TODO: Document this
zip_delete TODO: Document this
zip_fclose TODO: Document this
zip_file_strerror TODO: Document this
zip_fopen TODO: Document this
zip_fopen_index TODO: Document this
zip_fread TODO: Document this
zip_get_archive_comment TODO: Document this
zip_get_file_comment TODO: Document this
zip_get_num_files TODO: Document this
zip_open TODO: Document this
zip_rename TODO: Document this
zip_set_archive_comment TODO: Document this
zip_set_file_comment TODO: Document this
zip_source_buffer TODO: Document this
zip_source_file TODO: Document this
zip_source_filep TODO: Document this
zip_source_free TODO: Document this
zip_source_zip TODO: Document this
zip_stat TODO: Document this
zip_strerror TODO: Document this
zip_unchange_all TODO: Document this
zip_unchange_archive TODO: Document this


Example:
import standard.arch.zip


class Main {
function Main() {
var archive="test.zip";
if (!(var za=zip_open(archive, ZIP_CREATE, var err))) {
echo "Error: $err\n";
return 1;
}

var zs=zip_source_buffer(za, "Hello world ... from a ZIP file !");

zip_add(za, "teststring.txt",zs);
zip_close(za);
}
}



Documented by RadGS' Autodocumenter 1.0, generation time: Fri Jan 21 18:06:27 2011 GMT(c)2011 RadGs Software