bit7z压缩与解压

bit7z是一个对7-zip的静态wrapper库(GitHub - rikyoz/bit7z: A C++ static library offering a clean and simple interface to the 7-zip shared libraries. · GitHub),大大简化了文件压缩与解压的过程,提供一个简单的示例。7-zip支持市面上绝大多数压缩文件格式(zip,7z,tar,xz,...),都可以通过bit7z进行调用。

复制代码
#include <bit7z/bitarchivewriter.hpp>
#include <bit7z/bitarchivereader.hpp>
#include <io.h> 
#include <cstdio> 

#pragma comment(lib, "bit7z.lib")

class Bit7zHelper
{
public:
    Bit7zHelper() :total(0) {}
    void TotalSizeNotify(uint64_t sz)
    {
        total = sz;
        printf("TotalCallback: %lld.\n", sz);
    }
    bool ProgressUpdate(uint64_t sz)
    {
        printf("ProgressCallback: %.4f.\n", total == 0 ? 0.0 : (100 * 1.0 * sz) / total);
        return true;
    }
    void FileOnChange(bit7z::tstring filename)
    {
        printf("Begin Process File %s.\n",filename.c_str());
    }
private:
    uint64_t total;
};

bool CompressFolderTo()
{
    bool bRet = false;
    const char* dstFile = "C:/Users/project/test/output.7z";
    try
    { // bit7z classes can throw BitException objects
        using namespace bit7z;

        Bit7zLibrary lib{ "7z.dll" };//find 7z.dll on your computer,if you don't have 7z.dll, then install 7z software to get one.
        BitArchiveWriter archive{ lib, BitFormat::SevenZip };
        Bit7zHelper hlp;
        TotalCallback tcb = [&hlp](uint64_t sz) {hlp.TotalSizeNotify(sz); };
        FileCallback fcb= [&hlp](bit7z::tstring filename) {hlp.FileOnChange(filename); };
        ProgressCallback pcb= [&hlp](uint64_t sz) {return hlp.ProgressUpdate(sz); };
            
        archive.setTotalCallback(tcb);
        archive.setFileCallback(fcb);
        archive.setProgressCallback(pcb);
        archive.setPassword("123456");
        // Adding the items to be compressed (no compression is performed here)
        archive.addFile("C:/Users/project/test/file1.txt","A/B/file1.txt");
        archive.addFile("C:/Users/project/test/file2.txt", "A/file2.txt");
        //archive.addDirectory("C:/Users/project/test");//add the whole test folder(include the all subfolders and files of test)
        if (_access(dstFile, 0) == 0)//delete if already existed.
        {
            if (remove(dstFile) != 0) 
            {
                goto end;
            }
        }
        // Compressing the added items to the output archive
        archive.compressTo(dstFile);
        bRet = true;
    }
    catch (const bit7z::BitException& ex)
    { 
        std::error_code code = ex.code();
        int errCode = code.value();
        if (errCode == 126)
            printf("Please Get the 7z mudule firstly.\n");
        printf("error: %s[%d].\n", ex.what(), errCode);
    }
    end:
    return bRet;
}

bool ExtractCompressedTo()
{
    bool bRet = false;
    DWORD attr = 0;
    const char* srcZipfile = "C:/Users/project/test/output.7z";
    const char* dstFolder= "C:/Users/project";
    if (_access(dstFolder, 0) == -1)
        return bRet;
    if (_access(srcZipfile, 0) == -1)
        return bRet;
    attr = GetFileAttributesA(dstFolder);
    if ((attr & FILE_ATTRIBUTE_DIRECTORY) == 0)
        return bRet;
    try { // bit7z classes can throw BitException objects
        using namespace bit7z;

        Bit7zLibrary lib{ "7z.dll" };//find 7z.dll on your computer,if you don't have 7z.dll, then install 7z software to get one.

        // Opening the archive
        BitArchiveReader archive{ lib, srcZipfile, BitFormat::SevenZip };
        archive.setPassword("123456");
        // Testing the archive
        archive.test();
        
        // Extracting the archive
        archive.extractTo(dstFolder);
        bRet = true;
    }
    catch (const bit7z::BitException& ex)
    { 
        std::error_code code = ex.code();
        int errCode = code.value();
        if (errCode == 126)
            printf("Please Get the 7z mudule firstly.\n");
        printf("error: %s[%d].\n", ex.what(), errCode);
    }
    return bRet;
}
相关推荐
QiLinkOS2 小时前
【从实验室到商业战场:发明专利如何重塑科技与企业的共生生态】
大数据·c语言·数据结构·c++·人工智能·单片机·算法
Irissgwe2 小时前
c++11(lambda表达式与包装器、线程库)
c++·c++11·lambda表达式·线程库·包装器·互斥量库·条件变量库
Peter·Pan爱编程3 小时前
14. Lambda 表达式:随手可写的函数对象
c++·算法·ai编程
不想写代码的星星4 小时前
从分支预测角度看 C++:为什么你的热循环慢得离谱?
c++
郝学胜-神的一滴4 小时前
Qt 高级开发 018:复刻经典登录界面布局与窗口美化全解析
开发语言·c++·qt·程序人生·用户界面
郝亚军4 小时前
IEEE 754 单精度浮点的SEM表示
开发语言·c++·算法
Yyyyyy~6 小时前
【C++】数组篇
开发语言·c++
qq_333120976 小时前
C++高并发内存池的整体设计和实现思路_C 语言
java·c语言·c++
牛肉在哪里6 小时前
ros2 从零开始27 编写广播C++
开发语言·c++·机器人
Curvatureflight6 小时前
前端国际化 i18n 落地实践:语言包、动态文案和格式化问题怎么处理?
前端·c++·vue