命名空间
变体
操作

std::filesystem::file_size

来自 cppreference.com
 
 
 
在头文件 <filesystem> 中定义
std::uintmax_t file_size( const std::filesystem::path& p );
(1) (自 C++17 起)
std::uintmax_t file_size( const std::filesystem::path& p,
                          std::error_code& ec ) noexcept;
(2) (自 C++17 起)

如果 p 不存在,则报告错误。

对于普通文件 p,返回通过读取 POSIX stat (跟随符号链接) 获得的结构的 st_size 成员确定的大小。

尝试确定目录(以及任何其他不是普通文件或符号链接的文件)的大小的结果是实现定义的。

非抛出重载在错误时返回 static_cast<std::uintmax_t>(-1)

内容

[编辑] 参数

p - 要检查的路径
ec - 非抛出重载中用于错误报告的输出参数

[编辑] 返回值

文件的大小(以字节为单位)。

[编辑] 异常

任何未标记 noexcept 的重载在内存分配失败时都可能抛出 std::bad_alloc

1) 在底层操作系统 API 错误上抛出 std::filesystem::filesystem_error,使用 p 作为第一个路径参数,并使用操作系统错误代码作为错误代码参数进行构造。
2) 如果操作系统 API 调用失败,则将 std::error_code& 参数设置为操作系统 API 错误代码,如果未发生错误,则执行 ec.clear()

[编辑] 示例

#include <cmath>
#include <filesystem>
#include <fstream>
#include <iostream>
namespace fs = std::filesystem;
 
struct HumanReadable
{
    std::uintmax_t size{};
 
private:
    friend std::ostream& operator<<(std::ostream& os, HumanReadable hr)
    {
        int o{};
        double mantissa = hr.size;
        for (; mantissa >= 1024.; mantissa /= 1024., ++o);
        os << std::ceil(mantissa * 10.) / 10. << "BKMGTPE"[o];
        return o ? os << "B (" << hr.size << ')' : os;
    }
};
 
int main(int, char const* argv[])
{
    fs::path example = "example.bin";
    fs::path p = fs::current_path() / example;
    std::ofstream(p).put('a'); // create file of size 1
    std::cout << example << " size = " << fs::file_size(p) << '\n';
    fs::remove(p);
 
    p = argv[0];
    std::cout << p << " size = " << HumanReadable{fs::file_size(p)} << '\n';
 
    try
    {
        std::cout << "Attempt to get size of a directory:\n";
        [[maybe_unused]] auto x_x = fs::file_size("/dev");
    }
    catch (fs::filesystem_error& e)
    {
        std::cout << e.what() << '\n';
    }
 
    for (std::error_code ec; fs::path bin : {"cat", "mouse"})
    {
        bin = "/bin"/bin;
        if (const std::uintmax_t size = fs::file_size(bin, ec); ec)
            std::cout << bin << " : " << ec.message() << '\n';
        else
            std::cout << bin << " size = " << HumanReadable{size} << '\n';
    }
}

可能的输出

"example.bin" size = 1
"./a.out" size = 22KB (22512)
Attempt to get size of a directory:
filesystem error: cannot get file size: Is a directory [/dev]
"/bin/cat" size = 50.9KB (52080)
"/bin/mouse" : No such file or directory

[编辑] 另请参阅

通过截断或零填充更改普通文件的大小
(函数) [编辑]
(C++17)
确定文件系统上可用的可用空间
(函数) [编辑]
返回目录项所指向的文件的大小
(std::filesystem::directory_entry 的公共成员函数) [编辑]