zip_name_locate(3) - Linux man page

Name

zip_name_locate - get index of file by name

Library

libzip (-lzip)

Synopsis

#include <zip.h>

int zip_name_locate(struct zip *archive, const char *fname, int flags);

Description

The zip_name_locate function returns the index of the file named fname in archive. If archive does not contain a file with that name, -1 is returned. The are specified by or'ing the following values, or 0 for none of them.

ZIP_FL_NOCASE

Ignore case distinctions.

ZIP_FL_NODIR

Ignore directory part of file name in archive.

Return Values

zip_name_locate returns the index of the file named fname or -1, if archive does not contain an entry of that name.

Errors

The zip_name_locate function fails and sets the error information to ZIP_ER_NOENT if no entry of the name fname is found in the archive. If one of the arguments is invalid, the error information is set to ZIP_ER_INVAL.

See Also

libzip(3), zip_get_name(3)

Authors

Dieter Baron <dillo@giga.or.at> and Thomas Klausner <tk@giga.or.at>

Referenced By

zip_fopen(3), zip_stat(3)