blob: 81b0ae384b0d67bbc49faf6f25d75998afd97950 [file] [log] [blame]
Dieter Baron973b5dc2003-10-06 02:52:23 +00001.\" Converted with mdoc2man 0.2
Thomas Klausner05f69282007-06-06 22:47:11 +02002.\" from NiH: zip_stat.mdoc,v 1.12 2006/12/16 10:12:58 wiz Exp
3.\" $NiH: zip_stat.mdoc,v 1.12 2006/12/16 10:12:58 wiz Exp $
Dieter Baron973b5dc2003-10-06 02:52:23 +00004.\"
Thomas Klausner201d1b22003-12-27 22:51:30 +00005.\" zip_stat.mdoc \-- get information about file
Thomas Klausner83ac9542006-04-09 14:52:44 +00006.\" Copyright (C) 2003, 2004, 2005, 2006 Dieter Baron and Thomas Klausner
Dieter Baron973b5dc2003-10-06 02:52:23 +00007.\"
8.\" This file is part of libzip, a library to manipulate ZIP archives.
9.\" The authors can be contacted at <nih@giga.or.at>
10.\"
11.\" Redistribution and use in source and binary forms, with or without
12.\" modification, are permitted provided that the following conditions
13.\" are met:
14.\" 1. Redistributions of source code must retain the above copyright
15.\" notice, this list of conditions and the following disclaimer.
16.\" 2. Redistributions in binary form must reproduce the above copyright
17.\" notice, this list of conditions and the following disclaimer in
18.\" the documentation and/or other materials provided with the
19.\" distribution.
20.\" 3. The names of the authors may not be used to endorse or promote
21.\" products derived from this software without specific prior
22.\" written permission.
23.\"
24.\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
25.\" OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26.\" WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
28.\" DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
30.\" GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31.\" INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
32.\" IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
33.\" OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
34.\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35.\"
Thomas Klausneread13a72006-12-29 20:36:49 +000036.TH ZIP_STAT 3 "December 16, 2006" NiH
Dieter Baron973b5dc2003-10-06 02:52:23 +000037.SH "NAME"
38zip_stat , \- .Nm zip_stat_index
39get information about file
40.SH "LIBRARY"
Thomas Klausner201d1b22003-12-27 22:51:30 +000041libzip (-lzip)
Dieter Baron973b5dc2003-10-06 02:52:23 +000042.SH "SYNOPSIS"
Thomas Klausnerf4ac13a2006-10-03 18:58:00 +000043#include <zip.h>
44.PP
45int
46zip_stat(struct zip *archive, const char *fname, int flags, struct zip_stat *sb);
47.PP
48int
49zip_stat_index(struct zip *archive, int index, int flags, struct zip_stat *sb);
Dieter Baron973b5dc2003-10-06 02:52:23 +000050.SH "DESCRIPTION"
51The
Thomas Klausnerf4ac13a2006-10-03 18:58:00 +000052zip_stat
Dieter Baron973b5dc2003-10-06 02:52:23 +000053function obtains information about the file named
54\fBfname\fR
55in
56\fBarchive.\fR
57The
58\fBflags\fR
59argument specifies how the name lookup should be done.
60Its values are described in
61zip_name_locate(3).
Dieter Baronb2ed74d2004-04-14 14:01:31 +000062Also,
Thomas Klausner6b4002c2005-05-20 22:00:03 +000063\fBZIP_FL_UNCHANGED\fR
Dieter Baronb2ed74d2004-04-14 14:01:31 +000064may be
Thomas Klausner6b4002c2005-05-20 22:00:03 +000065.I or'ed
Dieter Baronb2ed74d2004-04-14 14:01:31 +000066to it to request information about the original file in the archive,
67ignoring any changes made.
Dieter Baron973b5dc2003-10-06 02:52:23 +000068.PP
69The
Thomas Klausnerf4ac13a2006-10-03 18:58:00 +000070zip_stat_index
Dieter Baron973b5dc2003-10-06 02:52:23 +000071function obtains information about the file at position
72\fBindex.\fR
73.PP
74The
75\fBsb\fR
76argument is a pointer to a
Thomas Klausnerf4ac13a2006-10-03 18:58:00 +000077.PP
78struct zip_stat
Dieter Baron973b5dc2003-10-06 02:52:23 +000079(shown below), into which information about the file is placed.
80.Bd \-literal
81struct zip_stat {
82 const char *name; /* name of the file */
83 int index; /* index within archive */
84 unsigned int crc; /* crc of file data */
85 unsigned int size; /* size of file (uncompressed) */
86 time_t mtime; /* modification time */
87 unsigned int comp_size; /* size of file (compressed) */
88 unsigned short comp_method; /* compression method used */
Thomas Klausner83ac9542006-04-09 14:52:44 +000089 unsigned short encryption_method; /* encryption method used */
Dieter Baron973b5dc2003-10-06 02:52:23 +000090};
Thomas Klausneread13a72006-12-29 20:36:49 +000091.Ed
Dieter Baron973b5dc2003-10-06 02:52:23 +000092.SH "RETURN VALUES"
93Upon successful completion 0 is returned.
Thomas Klausner201d1b22003-12-27 22:51:30 +000094Otherwise, \-1 is returned and the error information in
Dieter Baron973b5dc2003-10-06 02:52:23 +000095\fBarchive\fR
96is set to indicate the error.
97.SH "ERRORS"
98The function
Thomas Klausnerf4ac13a2006-10-03 18:58:00 +000099zip_stat
Dieter Baron973b5dc2003-10-06 02:52:23 +0000100can fail for any of the errors specified for the routine
101zip_name_locate(3).
102.PP
103The function
Thomas Klausnerf4ac13a2006-10-03 18:58:00 +0000104zip_stat_index
Dieter Baron973b5dc2003-10-06 02:52:23 +0000105fails and sets the error information to
Thomas Klausnerf4ac13a2006-10-03 18:58:00 +0000106ZIP_ER_INVAL
Dieter Baron973b5dc2003-10-06 02:52:23 +0000107if
108\fBindex\fR
109is invalid.
Thomas Klausnere8b26942005-06-09 19:52:49 +0000110If
111\fBZIP_FL_UNCHANGED\fR
112is not set and no information can be obtained from the source
113callback, the error information is set to
Thomas Klausnerf4ac13a2006-10-03 18:58:00 +0000114ZIP_ER_CHANGED.
Dieter Baron973b5dc2003-10-06 02:52:23 +0000115.SH "SEE ALSO"
Thomas Klausner3dd81d82005-06-09 19:01:53 +0000116libzip(3),
Thomas Klausneread13a72006-12-29 20:36:49 +0000117zip_name_locate(3),
118zip_stat_init(3)
Thomas Klausner75330132005-06-17 12:59:06 +0000119.SH "AUTHORS"
120
121Dieter Baron <dillo@giga.or.at>
122and
123Thomas Klausner <tk@giga.or.at>