- zip_close – It closes a zip archive opened by the zip_open() function
- zip_entry_close – It closes an entry in the ZIP file
- zip_entry_compressedsize – It returns the compressed size of a directory entry
- zip_entry_compressionmethod – It returns the compression method of a directory entry
- zip_entry_filesize – It returns the actual file size of an entry in the ZIP file
- zip_entry_name – It returns the name of an entry in the ZIP file
- zip_entry_open – It opens an entry in the ZIP file for reading
- zip_entry_read – It reads from an open entry in the ZIP file
- zip_open – It opens a ZIP file
- zip_read – It reads the next entry in a ZIP file
Tag Archives: zip
Command to zip a folder – linux ubuntu
zip folder-name *
It compress all the files in the respective folder and create an archive folder-name.zip
zip – r folder-name *
It compress all the data including its sub folder contents