legongju.com
我们一直在努力
2025-01-11 04:50 | 星期六

c++如何压缩文件夹

在C++中,压缩文件夹通常需要使用第三方库,例如 zlib、minizip 或者 libarchive。以下是一个使用 minizip 库的示例,演示如何压缩文件夹及其内容:

首先,确保已经安装了 minizip 库。在 Ubuntu 系统上,可以使用以下命令安装:

sudo apt-get install libminizip-dev

接下来,编写一个 C++ 程序来压缩文件夹:

#include
#include
#include
#include 
#include 
#include "mz_compat.h"

bool is_directory(const std::string &path) {
    struct stat st;
    if (stat(path.c_str(), &st) == 0 && S_ISDIR(st.st_mode)) {
        return true;
    }
    return false;
}

std::vector list_files(const std::string &folder) {
    std::vector files;
    DIR *dir = opendir(folder.c_str());
    if (dir != nullptr) {
        dirent *entry;
        while ((entry = readdir(dir)) != nullptr) {
            if (entry->d_name[0] != '.') {
                std::string path = folder + "/" + entry->d_name;
                if (is_directory(path)) {
                    auto sub_files = list_files(path);
                    files.insert(files.end(), sub_files.begin(), sub_files.end());
                } else {
                    files.push_back(path);
                }
            }
        }
        closedir(dir);
    }
    return files;
}

int compress_folder(const std::string &input_folder, const std::string &output_file) {
    zipFile zf = zipOpen64(output_file.c_str(), APPEND_STATUS_CREATE);
    if (zf == nullptr) {
        std::cerr << "Failed to create zip file: "<< output_file<< std::endl;
        return -1;
    }

    auto files = list_files(input_folder);
    for (const auto &file : files) {
        zip_fileinfo file_info = {};
        int err = zipOpenNewFileInZip4_64(zf, file.substr(input_folder.length() + 1).c_str(), &file_info,
                                          nullptr, 0, nullptr, 0, nullptr, Z_DEFLATED, Z_DEFAULT_COMPRESSION, 0,
                                          -MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY, nullptr, 0, 0, 0);
        if (err != ZIP_OK) {
            std::cerr << "Failed to open file in zip: "<< file<< std::endl;
            zipClose(zf, nullptr);
            return -1;
        }

        FILE *f = fopen(file.c_str(), "rb");
        if (f == nullptr) {
            std::cerr << "Failed to open file: "<< file<< std::endl;
            zipCloseFileInZip(zf);
            zipClose(zf, nullptr);
            return -1;
        }

        char buffer[4096];
        size_t read_size;
        while ((read_size = fread(buffer, 1, sizeof(buffer), f)) > 0) {
            err = zipWriteInFileInZip(zf, buffer, static_cast(read_size));
            if (err < 0) {
                std::cerr << "Failed to write file to zip: "<< file<< std::endl;
                fclose(f);
                zipCloseFileInZip(zf);
                zipClose(zf, nullptr);
                return -1;
            }
        }

        fclose(f);
        zipCloseFileInZip(zf);
    }

    zipClose(zf, nullptr);
    return 0;
}

int main() {
    std::string input_folder = "/path/to/input/folder";
    std::string output_file = "/path/to/output/file.zip";

    int result = compress_folder(input_folder, output_file);
    if (result == 0) {
        std::cout << "Folder successfully compressed!"<< std::endl;
    } else {
        std::cerr << "Failed to compress folder."<< std::endl;
    }

    return result;
}

这个程序首先递归地列出文件夹中的所有文件,然后使用 minizip 库将这些文件添加到压缩文件中。请注意,您需要根据实际情况修改 input_folderoutput_file 变量的值。

未经允许不得转载 » 本文链接:https://www.legongju.com/article/100776.html

相关推荐

  • c#如何获取当前程序的路径

    c#如何获取当前程序的路径

    在C#中,你可以使用System.IO.Path和System.Reflection命名空间来获取当前程序的路径。下面是一个示例代码:
    using System;
    using System.IO;
    us...

  • c#中如何调用python

    c#中如何调用python

    在C#中调用Python脚本,可以使用Pythonnet库(Python for .NET)或者IronPython库。这里我将分别介绍这两种方法。 使用Pythonnet库(Python for .NET): 首先,...

  • c#封装的步骤是什么

    c#封装的步骤是什么

    C# 封装主要包括以下几个步骤: 定义类(Class):创建一个新的类,用于存放需要封装的属性和方法。类是面向对象编程中的基本单位,它将数据(属性)和操作数据的...

  • c#字符串如何去重

    c#字符串如何去重

    在C#中,可以使用LINQ(Language Integrated Query)来实现字符串去重。下面是一个示例代码:
    using System;
    using System.Linq; class Program
    ...

  • 在python中print代表什么

    在python中print代表什么

    在Python中,print是一个内置函数,用于将文本或变量的值输出到控制台(命令行界面)。当你使用print()函数时,它会将括号内的内容显示在屏幕上。例如:
    pr...

  • python如何打印日志到指定文件

    python如何打印日志到指定文件

    在Python中,您可以使用内置的logging模块将日志消息记录到指定的文件。以下是一个简单的示例,说明如何设置日志记录器以将日志消息写入名为app.log的文件:

  • python如何打印对象属性

    python如何打印对象属性

    在Python中,可以使用内置的dir()函数来查看一个对象的所有属性和方法。这里是一个例子:
    class MyClass: def __init__(self): self.attribute1 = "Hello" ...

  • python print如何输出列表

    python print如何输出列表

    在Python中,可以使用print()函数来输出列表。这里有一个例子:
    my_list = [1, 2, 3, 4, 5]
    print(my_list) 上述代码将输出整个列表:
    [1, 2, 3,...