gpt4 book ai didi

c++ - 压缩包 - 错误 : Error while opening the archive : no error

转载 作者:行者123 更新时间:2023-11-28 05:39:51 31 4
gpt4 key购买 nike

我正在尝试找出解决问题的方法;事实上,我正在编写自己的工具,使用 C++ 中的 libzip 来压缩文件来进行保存。

绝对没有完成,但我想做一些测试,然后我做了并从日志中获得了一个“有趣”的错误。

这是我的功能:

void save(std::vector<std::string> filepath, std::string savepath){
int err;

savepath += time(NULL);
zip* saveArchive = zip_open(savepath.c_str(), ZIP_CREATE , &err);
if(err != ZIP_ER_OK) throw xif::sys_error("Error while opening the archive", zip_strerror(saveArchive));
for(int i = 0; i < filepath.size(); i++){
if(filepath[i].find("/") == std::string::npos){}
if(filepath[i].find(".cfg") == std::string::npos){
err = (int) zip_file_add(saveArchive, filepath[i].c_str(), NULL, NULL);
if(err == -1) throw xif::sys_error("Error while adding the files", zip_strerror(saveArchive));
}

}

if(zip_close(saveArchive) == -1) throw xif::sys_error("Error while closing the archive", zip_strerror(saveArchive));
}

我收到一个 => Error : Error while opening the archive : No error当然,我没有编写任何 .zip。

如果你能帮助我,谢谢你!

最佳答案

documentation for zip_open 表示它仅在打开失败时设置 *errorp。测试 saveArchive == nullptr 或将 err 初始化为ZIP_ER_OK。

附言搜索 '/' 什么都不做。你是想在那个 block 中放一个 continue 吗?

另一条有问题的行是:

    savepath += time(NULL);

如果这是标准的 time 函数,它会返回自纪元以来的秒数。这可能会被截断为一个字符,然后将该字符附加到文件名。这将导致文件名中出现奇怪的字符!我建议使用 std::chrono 转换为文本。

关于c++ - 压缩包 - 错误 : Error while opening the archive : no error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37364760/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com