您好,登錄后才能下訂單哦!
在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;
}
在這個示例中,我們定義了兩個函數:
is_compressed
:檢查給定的文件路徑是否指向一個壓縮文件。我們首先嘗試以二進制模式打開文件,然后讀取文件的前4個字節。對于gzip文件,這應該是BZh
,而對于zip文件,這應該是GZip
。
get_file_extension
:從給定的文件路徑中獲取文件擴展名。我們查找最后一個.
字符的位置,然后從該位置之后提取子字符串作為擴展名。
在main
函數中,我們調用這兩個函數來檢查文件是否壓縮以及獲取其擴展名。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。