Query: zip_get_name
OS: centos
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ZIP_GET_NAME(3) Library Functions Manual ZIP_GET_NAME(3)NAMEzip_get_name - get name of file by indexLIBRARYlibzip (-lzip)SYNOPSIS#include <zip.h> const char * zip_get_name(struct zip *archive, int index, int flags);DESCRIPTIONThe zip_get_name function returns the name of the file at position index in archive. If flags is set to ZIP_FL_UNCHANGED, the original unchanged filename is returned. The returned string must not be modified or freed, and becomes invalid when archive is closed.RETURN VALUESUpon successful completion, a pointer to the name is returned. Otherwise, NULL and the error code in archive is set to indicate the error.ERRORSzip_get_name fails if: [ZIP_ER_DELETED] index refers to a file that has been deleted (see zip_delete(3) ). [ZIP_ER_INVAL] index is not a valid file index in archive, or index points to an added file and ZIP_FL_UNCHANGED is set.SEE ALSOlibzip(3), zip_name_locate(3)AUTHORSDieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at> NiH January 20, 2005 ZIP_GET_NAME(3)
Related Man Pages |
---|
zip_add(3) - centos |
zip_get_file_comment(3) - centos |
zip_name_locate(3) - centos |
zip_get_name(3) - debian |
zip_set_file_comment(3) - debian |
Similar Topics in the Unix Linux Community |
---|
Unix Command to rename a file in a zipped folder |