要獲取文件大小,可以使用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或更高版本的編譯器和庫支持。