命名空间
变体
操作

std::filesystem::directory_entry::file_size

来自 cppreference.com
 
 
 
 
std::uintmax_t file_size() const;
(1) (自 C++17)
std::uintmax_t file_size( std::error_code& ec ) const noexcept;
(2) (自 C++17)

如果文件大小在此 directory_entry 中缓存,则返回缓存的值。否则,返回

内容

[编辑] 参数

ec - 非抛出重载中用于错误报告的输出参数

[编辑] 返回值

所引用文件系统对象的的大小。

[编辑] 异常

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

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

[编辑] 示例

打印给定目录中的文件列表以及它们的可读大小。

#include <cmath>
#include <cstdint>
#include <filesystem>
#include <iostream>
 
struct HumanReadable
{
    std::uintmax_t size{};
 
    template<typename Os> friend Os& operator<<(Os& os, HumanReadable hr)
    {
        int i{};
        double mantissa = hr.size;
        for (; mantissa >= 1024.0; mantissa /= 1024.0, ++i)
        {}
        os << std::ceil(mantissa * 10.0) / 10.0 << i["BKMGTPE"];
        return i ? os << "B (" << hr.size << ')' : os;
    }
};
 
int main(int argc, const char* argv[])
{
    const auto dir = argc == 2 ? std::filesystem::path{argv[1]}
                               : std::filesystem::current_path();
 
    for (std::filesystem::directory_entry const& entry : 
         std::filesystem::directory_iterator(dir))
        if (entry.is_regular_file())
            std::cout << entry.path().filename() << " size: "
                      << HumanReadable{entry.file_size()} << '\n';
}

可能的输出

"boost_1_73_0.tar.bz2" size: 104.2MB (109247910)
"CppCon 2018 - Jon Kalb “Copy Elision”.mp4" size: 15.7MB (16411990)
"cppreference-doc-20190607.tar.xz" size: 6.3MB (6531336)
"hana.hpp" size: 6.7KB (6807)

[编辑] 参见

(C++17)
返回文件的大小
(函数) [编辑]