- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 libarchive
3.3.2 版时遇到问题。我写了一个程序来读取 7z 文件中的选定条目,它看起来像:
file.7z
|__ file.xml
|__ file.fog
|__ file_1.fog
但是,该程序无法读取我的大部分存档的 file_1.fog
,并且无法读取某些存档的 file.fog
。我尝试使用 archive_error_string()
看看会发生什么,错误是 corrupted archive
或 truncated RAR archive
或 Decompressing internal错误
。
这是故障代码:
void list_archive(string name) {
struct archive *a;
struct archive_entry *entry;
// create new archive struct for the file
a = archive_read_new();
archive_read_support_filter_all(a);
archive_read_support_format_all(a);
// open 7z file
int r = archive_read_open_filename(a, name.c_str(), 1024);
if (r != ARCHIVE_OK) {
cout << "cannot read file: " << name << endl;
cout << "read error: " << archive_error_string(a) << endl;
}
// looping through entries
for (;;) {
int status = archive_read_next_header(a, &entry);
// if there's no more header
if (status != ARCHIVE_OK) break;
// print some status messages to stdout
string pathname(archive_entry_pathname(entry));
cout << "working on: " << pathname << endl;
size_t entry_size = archive_entry_size(entry);
// load the entry's content
char * content;
content = (char*)malloc(entry_size);
r = archive_read_data(a, content, entry_size);
// check if archive_read_data was successful
if (r > 0) {
cout << "read " << r << " of " << entry_size << " bytes successfully\n";
// we are interested in .fog file only
if (pathname.back() == 'g') {
// do something with the .fog file
}
}
else // usually the error happens here
if (archive_errno(a) != ARCHIVE_OK) cout << "read error: " << archive_error_string(a) << endl;
// free the content and clear the entry
archive_read_data_skip(a);
free(content);
archive_entry_clear(entry);
cout << "-----" << endl;
}
// we are done with the current archive, free it
r = archive_read_free(a);
if (r != ARCHIVE_OK) {
cout << "Failed to free archive object. Error: " << archive_error_string(a) << endl;
exit(1);
}
}
最佳答案
我找到了麻烦制造者,如果 future 的用户有同样的问题,我会在这里回答。
int r = archive_read_open_filename(a, name.c_str(), 1024);
显然 1024
对于缓冲区大小来说太小了。我将它增加到 102400
并且能够读取/提取我的所有文件。
关于c++ - libarchive 在某些条目上返回错误,而 7z 可以正常提取,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49702764/
我已经编写了一个 C 程序来使用 libarchive 从 tar 存档中提取文件。 我想从此存档中提取文件并将其打印到标准输出。 但是我得到了额外的字符 .这是垃圾,但它来自另一个文件(可能与存档中
我正在尝试使用 libarchive 压缩/解压缩文件夹。但是,我不知道如何使用它? 最佳答案 包括这些: #include #include 并编译: gcc -Wall -o test tes
我有一个 tar 文件,我想使用 libarchive 将其提取到特定目录。如何将 libarchive 提取到我想要的任何目录?目前,它总是 提取到我程序的工作目录中。我看了this answer但
任何人都可以帮助展示使用 libarchive 的示例将ZIP文件解压到指定文件夹?看起来提供的示例程序(untar.c、tarfilter.c 和 minitar)都将存档提取到当前工作目录。有没有
我正在尝试使用 libarchive 库重命名存档的条目。特别是我正在使用函数 archive_entry_set_pathname。 文件和空目录被正确重命名,但不幸的是,如果目录不为空,这将不起作
我有一个 C++ 程序,我想从磁盘中读取一些描述的存档。我想以大致类似树的形式重建它以反射(reflect)磁盘上的结构(不支持符号链接(symbolic link)/硬链接(hard link)等时
我尝试修改(在内存中) 中的一个文件 zip 存档。但我不明白该怎么做 我可以将源文件读入内存,但我不明白接下来要做什么 你能举个例子我怎么做吗 最佳答案 为什么,这是一个简单的 C++11 示例,替
我正在尝试将一个目录添加到我正在创建的 tar 存档中。存档已创建,但是其中没有文件。 这是我使用 libarchive 的代码(目录是要压缩的目录路径的 QString。) struct archi
我在使用 libarchive 3.3.2 版时遇到问题。我写了一个程序来读取 7z 文件中的选定条目,它看起来像: file.7z |__ file.xml |__ file.fog
我已经掌握了 libarchive并按照 build instructions 在 Windows 和 Linux 上构建示例. 我现在想在我的基于 Qt 的项目中使用这个库,所以我正在使用 Qt C
我正在尝试以编程方式将 gzip 文件解压缩到内存中,并使用 libarchive project 模拟命令 gzip -d file.gz .该文件实际上取自具有以下 header 的 http 响
我正在使用 iOS-libarchive 库在 iPhone 上提取 .tar。我正在使用此链接中给出的示例代码 http://code.google.com/p/libarchive/wiki/Ex
release notes对于 libarchive 声明,由于 MacOS 中包含旧版本的 libarchive,因此他们建议更改 LD_LIBRARY_PATH 以指向 libarchive 的最
我正在尝试在 Linux 下为 win32 交叉编译一个小程序。它使用 libarchive,它可以在我的 fedora 23 安装上的 mingw 中使用(全部通过 dnf 安装),但我遇到了很多链
我要添加libarchive到我的应用程序,以便能够提取 tar.gz。 正如安装说明所说,我采取了以下步骤: cmake -G "Xcode"~/libarchive-download-dir/ 制
我一定是遗漏了一些简单的东西。对于我的程序调用的任何 libarchive 函数,我都收到“ undefined symbol :...”。 此外,尝试使用推荐的命令编译示例程序之一: gcc -Wa
我在我的项目中使用 libarchive 已经有一段时间了,它工作得很好,目前我正在动态链接到它,所以在 Windows 上,libarchive.dll 文件必须出现在系统上。我现在想静态链接到库,
我正在尝试让 libarchive 模块在 Windows 上的 python 3.4 中工作。我已经用 pip 安装了 libarchive-c,一切正常,但每当我尝试将它导入我的代码或什至单独运行
总结 我如何在 C++ 中使用 libarchive 编写一个 zip 文件,这样路径名称将被 UTF-8 编码?使用 UTF-8 路径名时,特殊字符将在使用 OS X/Linux/Windows 8
我正在使用 macOS Big Sur 并尝试安装 Raku 模块,例如 pakku add App::RaCoCo .我会收到一条消息: Cannot locate native library '
我是一名优秀的程序员,十分优秀!