溫馨提示×

c++怎么獲取文件大小

c++
小億
183
2023-11-14 17:35:45
欄目: 編程語言

要獲取文件大小,可以使用std::filesystem庫中的file_size函數(shù)。以下是一個(gè)示例:

#include <iostream>
#include <filesystem>

namespace fs = std::filesystem;

int main() {
    fs::path filePath = "example.txt";
    
    try {
        uintmax_t fileSize = fs::file_size(filePath);
        std::cout << "File size: " << fileSize << " bytes" << std::endl;
    } catch (const fs::filesystem_error& ex) {
        std::cout << "Error: " << ex.what() << std::endl;
    }
    
    return 0;
}

在上面的示例中,我們使用std::filesystem庫中的file_size函數(shù)獲取文件的大小,并將其打印出來。請注意,使用std::filesystem需要C++17或更高版本的編譯器和庫支持。

0