Ai
1 Star 0 Fork 0

CovScript 智锐编程语言/covscript-zip

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
test.cpp 309 Bytes
一键复制 编辑 原始数据 按行查看 历史
李登淳 提交于 2020-12-03 18:03 +08:00 . add CNI bindings, but still have some bugs
#include "zip.hpp"
#include <iostream>
int main()
{
cov::zip file("./a.zip", cov::zip::openmode::append);
auto opt = file.get_entries();
if (!opt)
std::cout << "OK" << std::endl;
else {
for (auto &it : *opt)
std::cout << it.name << std::endl;
}
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/covscript/covscript-zip.git
git@gitee.com:covscript/covscript-zip.git
covscript
covscript-zip
covscript-zip
main

搜索帮助