1. install libzip73Please respect copyright.PENANAf5wGvi7DMb
# sudo apt install libzip-dev73Please respect copyright.PENANACzvxPN7ZpM
check its version: in ubuntu 24, the version is 1.7.373Please respect copyright.PENANAEm4YXEKV8z
# apt show libzip-dev73Please respect copyright.PENANAJfwkWUOLOs
2. ref the libzip doc (the doc version is 1.11.2, it's not the same as the version we installed)73Please respect copyright.PENANAvn5X8A0QFF
https://libzip.org/documentation/zip_open.html73Please respect copyright.PENANAEBxfsYB7EJ
https://libzip.org/documentation/zip_source_file.html73Please respect copyright.PENANAkXCH6QwfMl
https://libzip.org/documentation/zip_file_add.html
73Please respect copyright.PENANA7tDui41U80
3. use gemini to get an example, and improve it.
#include <zip.h>73Please respect copyright.PENANAZdzkuLWLvc
#include <stdio.h>73Please respect copyright.PENANAPCkTksvqUv
#include <stdlib.h>73Please respect copyright.PENANADYOawuFItb
#include <string.h>
// zip_path the result zip path73Please respect copyright.PENANA51Mf1Z9fXU
// file_list is the list of filenames to be compressed, file_list_len is the count of filenames73Please respect copyright.PENANAH62WQGKN28
// parent_path is the dir path of the filenames, it must be ended by /73Please respect copyright.PENANAmcqKantXvP
const char* file_make_zip(const char* zip_path, const char** file_list, int32_t file_list_len, const char* parent_path)73Please respect copyright.PENANAfUf0jkE6eK
{73Please respect copyright.PENANAtJcHxXdf7s
zip_t *zip = zip_open(zip_path, ZIP_CREATE | ZIP_TRUNCATE, NULL); 73Please respect copyright.PENANAgIM8sVhl1O
if (!zip) { printf("make zip file error: %s", zip_path); return NULL; }73Please respect copyright.PENANAqB0hv88FMI
size_t parent_path_len=strlen(parent_path); 73Please respect copyright.PENANAcKu2zM03uc
for(int32_t i=0;i<file_list_len;i++)73Please respect copyright.PENANAuQqxuke7VC
{73Please respect copyright.PENANAt80iS2CZYl
const char* item_name=file_list[i]; size_t item_path_size=parent_path_len + strlen(item_name) + 1; 73Please respect copyright.PENANA3A5lGXz7uB
char* item_path=malloc(item_path_size); snprintf(item_path, item_path_size, "%s%s", parent_path, item_name); 73Please respect copyright.PENANAp8v5Pfbiod
zip_source_t * zip_source = zip_source_file(zip, item_path, 0, 0); 73Please respect copyright.PENANAa1GIqK2Jxo
if(zip_source==NULL){ printf("make zip item source error: %s", item_path); return NULL; } 73Please respect copyright.PENANAS2BpxrQ5JT
if(zip_file_add(zip, item_name, zip_source, ZIP_FL_ENC_UTF_8)<0)73Please respect copyright.PENANA8gzRBU0EoV
{ zip_source_free(zip_source); printf("add zip item error: %s", item_path); return NULL; }73Please respect copyright.PENANAxuarzADvil
} 73Please respect copyright.PENANAgkPtGGbaSH
zip_close(zip); return zip_path;73Please respect copyright.PENANA8ElToYhNnH
}
4. add -lzip when compile
Refs:73Please respect copyright.PENANA4jqlKACvfd
gemini ai73Please respect copyright.PENANADkMLvRuTP5
https://www.cnblogs.com/charlee44/p/18299531
73Please respect copyright.PENANAadn9Md7nsX
If you found any errors or have any suggestions for this article, please let me know, my wechat: si_jinmin, my email: [email protected]73Please respect copyright.PENANARcp9AjXVYH
如果您发现本文有任何错误,或者对本文有好的建议,欢迎与我联系探讨,我的微信: si_jinmin, 我的email: [email protected]
如果您對C/C++ programming, Linux, website development, Vue, Git, vscode感興趣,邀請您加入「Linux/C/C++ Website Development」 微信群,請加我的微信(si_jinmin)以便拉您进群。
ns18.220.199.255da2