Linux cli command zip_file_add
2 minute read
libzip (-lzip)
The function
adds a file to a zip archive, while
replaces an existing file in a zip archive. The argument
specifies the zip archive to which the file should be added.
is the file’s name in the zip archive (for
while
specifies which file should be replaced (for
The
argument can be any combination of
with one of
Overwrite any existing file of the same name. For
only.
Guess encoding of
(default).
Interpret
as UTF-8.
Interpret
as code page 437 (CP-437).
The data is obtained from the
argument, see
should not be called on a
after it was used successfully in a
or
call.
Upon successful completion,
returns the index of the new file in the archive, and
returns 0. Otherwise, -1 is returned and the error code in
is set to indicate the error.
zip_source_t *s; const char *buf=“teststring”;
if ((s=zip_source_buffer(archive, buf, sizeof(buf), 0)) == NULL || zip_file_add(archive, name, s, ZIP_FL_ENC_UTF_8) < 0) { zip_source_free(s); printf(“error adding file: %s “, zip_strerror(archive)); }
and
fail if:
There is already a file called
in the archive. (Only applies to
and only if
is not provided).
or
are
or
is invalid.
Required memory could not be allocated.
Archive was opened in read-only mode.
and
were added in libzip 0.11.
and
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
█║▌│║█║▌★ KALI ★ PARROT ★ DEBIAN 🔴 PENTESTING ★ HACKING ★ █║▌│║█║▌
██╗ ██╗ ██████╗ ██████╗ ██╗ ██╗███████╗██████╗
████████╗██╔══██╗██╔═══██╗╚██╗██╔╝██╔════╝██╔══██╗
╚██╔═██╔╝██║ ██║██║ ██║ ╚███╔╝ █████╗ ██║ ██║
████████╗██║ ██║██║ ██║ ██╔██╗ ██╔══╝ ██║ ██║
╚██╔═██╔╝██████╔╝╚██████╔╝██╔╝ ██╗███████╗██████╔╝
╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═════╝
█║▌│║█║▌ WITH COMMANDLINE-KUNGFU POWER █║▌│║█║▌
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.