1. install libzip52Please respect copyright.PENANAPQ2xvGSe8r
# sudo apt install libzip-dev52Please respect copyright.PENANAPGvWK5bQCN
check its version: in ubuntu 24, the version is 1.7.352Please respect copyright.PENANAWBmkCC7jil
# apt show libzip-dev52Please respect copyright.PENANAMFYvaBpdtl
2. ref the libzip doc (the doc version is 1.11.2, it's not the same as the version we installed)52Please respect copyright.PENANA2jGY1r9laq
https://libzip.org/documentation/zip_open.html52Please respect copyright.PENANA7dmqReX5Cn
https://libzip.org/documentation/zip_source_file.html52Please respect copyright.PENANASWn2Ii0T7E
https://libzip.org/documentation/zip_file_add.html
52Please respect copyright.PENANAX8PMgJvsDL
3. use gemini to get an example, and improve it.
#include <zip.h>52Please respect copyright.PENANAAYObvd4ATn
#include <stdio.h>52Please respect copyright.PENANAckr560g2MO
#include <stdlib.h>52Please respect copyright.PENANA1nzjsnmfJT
#include <string.h>
// zip_path the result zip path52Please respect copyright.PENANAToaboRzXBY
// file_list is the list of filenames to be compressed, file_list_len is the count of filenames52Please respect copyright.PENANAQ8CzuCzYLj
// parent_path is the dir path of the filenames, it must be ended by /52Please respect copyright.PENANAyXOfWuVdYd
const char* file_make_zip(const char* zip_path, const char** file_list, int32_t file_list_len, const char* parent_path)52Please respect copyright.PENANAO822td1o4A
{52Please respect copyright.PENANAbLmP5aFPAf
zip_t *zip = zip_open(zip_path, ZIP_CREATE | ZIP_TRUNCATE, NULL); 52Please respect copyright.PENANAGpoe20P3D3
if (!zip) { printf("make zip file error: %s", zip_path); return NULL; }52Please respect copyright.PENANAkzwXrzmbKw
size_t parent_path_len=strlen(parent_path); 52Please respect copyright.PENANAokir9Y6ceK
for(int32_t i=0;i<file_list_len;i++)52Please respect copyright.PENANAvOkxiZTfme
{52Please respect copyright.PENANAIheMjyY5cm
const char* item_name=file_list[i]; size_t item_path_size=parent_path_len + strlen(item_name) + 1; 52Please respect copyright.PENANA4H1cmV5SBD
char* item_path=malloc(item_path_size); snprintf(item_path, item_path_size, "%s%s", parent_path, item_name); 52Please respect copyright.PENANAi24E0cRRLb
zip_source_t * zip_source = zip_source_file(zip, item_path, 0, 0); 52Please respect copyright.PENANAoUfPRDt4mv
if(zip_source==NULL){ printf("make zip item source error: %s", item_path); return NULL; } 52Please respect copyright.PENANAjHtT94a1sM
if(zip_file_add(zip, item_name, zip_source, ZIP_FL_ENC_UTF_8)<0)52Please respect copyright.PENANAmjvlRZmErs
{ zip_source_free(zip_source); printf("add zip item error: %s", item_path); return NULL; }52Please respect copyright.PENANAl4eoYzE6u2
} 52Please respect copyright.PENANArX8BIfaoA9
zip_close(zip); return zip_path;52Please respect copyright.PENANAKjdT1Ui0g6
}
4. add -lzip when compile
Refs:52Please respect copyright.PENANAun4MOBGDyQ
gemini ai52Please respect copyright.PENANADkka14yR1u
https://www.cnblogs.com/charlee44/p/18299531
52Please respect copyright.PENANAcEWnuKuu21
If you found any errors or have any suggestions for this article, please let me know, my wechat: si_jinmin, my email: si.jinmin@gmail.com52Please respect copyright.PENANAAne8nNX3vl
如果您发现本文有任何错误,或者对本文有好的建议,欢迎与我联系探讨,我的微信: si_jinmin, 我的email: si.jinmin@gmail.com
如果您對C/C++ programming, Linux, website development, Vue, Git, vscode感興趣,邀請您加入「Linux/C/C++ Website Development」 微信群,請加我的微信(si_jinmin)以便拉您进群。
ns3.19.255.255da2