温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C++解压与文件类型扩展

发布时间:2024-10-30 15:54:42 来源:亿速云 阅读:79 作者:小樊 栏目:编程语言

在C++中,我们可以使用标准库中的<fstream><string>头文件来处理文件和文件类型扩展

#include <iostream>
#include <fstream>
#include <string>

bool is_compressed(const std::string& file_path) {
    std::ifstream file(file_path, std::ios::binary);
    if (!file) {
        std::cerr << "Error opening file: " << file_path << std::endl;
        return false;
    }

    char magic[4];
    file.read(magic, sizeof(magic));
    file.close();

    return (magic[0] == 'B' && magic[1] == 'Z' && magic[2] == 'h' && magic[3] == 'd') ||
           (magic[0] == 'G' && magic[1] == 'Z' && magic[2] == 'm' && magic[3] == 'p');
}

std::string get_file_extension(const std::string& file_path) {
    size_t dot_pos = file_path.find_last_of('.');
    if (dot_pos == std::string::npos) {
        return "";
    }
    return file_path.substr(dot_pos + 1);
}

int main() {
    std::string file_path = "example.txt.gz";

    if (is_compressed(file_path)) {
        std::cout << "The file is compressed." << std::endl;
    } else {
        std::cout << "The file is not compressed." << std::endl;
    }

    std::string extension = get_file_extension(file_path);
    std::cout << "The file extension is: " << extension << std::endl;

    return 0;
}

在这个示例中,我们定义了两个函数:

  1. is_compressed:检查给定的文件路径是否指向一个压缩文件。我们首先尝试以二进制模式打开文件,然后读取文件的前4个字节。对于gzip文件,这应该是BZh,而对于zip文件,这应该是GZip

  2. get_file_extension:从给定的文件路径中获取文件扩展名。我们查找最后一个.字符的位置,然后从该位置之后提取子字符串作为扩展名。

main函数中,我们调用这两个函数来检查文件是否压缩以及获取其扩展名。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

c++
AI