1ARCHIVE_WRITE_FINISH_... BSD Library Functions Manual ARCHIVE_WRITE_FINISH_...
2

NAME

4     archive_write_finish_entry — functions for creating archives
5

LIBRARY

7     Streaming Archive Library (libarchive, -larchive)
8

SYNOPSIS

10     #include <archive.h>
11
12     int
13     archive_write_finish_entry(struct archive *);
14

DESCRIPTION

16     Close out the entry just written.  In particular, this writes out the
17     final padding required by some formats.  Ordinarily, clients never need
18     to call this, as it is called automatically by archive_write_header() and
19     archive_write_close() as needed.  For archive_write_disk handles, this
20     flushes pending file attribute changes like modification time.
21

RETURN VALUES

23     This function returns ARCHIVE_OK on success, or one of several non-zero
24     error codes for errors.  Specific error codes include: ARCHIVE_RETRY for
25     operations that might succeed if retried, ARCHIVE_WARN for unusual condi‐
26     tions that do not prevent further operations, and ARCHIVE_FATAL for seri‐
27     ous errors that make remaining operations impossible.
28

ERRORS

30     Detailed error codes and textual descriptions are available from the
31     archive_errno() and archive_error_string() functions.
32

SEE ALSO

34     tar(1), archive_write_data(3), archive_write_set_options(3),
35     libarchive(3), cpio(5), mtree(5), tar(5)
36
37BSD                            February 28, 2017                           BSD
Impressum