std::experimental::filesystem::file_size
来自 cppreference.com
< cpp | experimental | fs
定义在头文件中 <experimental/filesystem> |
||
std::uintmax_t file_size( const path& p ); std::uintmax_t file_size( const path& p, error_code& ec ); |
(1) | (文件系统 TS) |
返回正则文件 p 的大小,其确定方式类似于读取 POSIX stat 获取的结构中的 st_size
成员(符号链接将被跟踪)。
尝试确定目录的大小(以及任何不是正则文件或符号链接的其他文件)将被视为错误。
非抛出重载在发生错误时返回 -1。
内容 |
[编辑] 参数
p | - | 要检查的路径 |
ec | - | 非抛出重载中用于错误报告的输出参数 |
[编辑] 返回值
文件的大小,以字节为单位。
[编辑] 异常
不带 error_code& 参数的重载在底层操作系统 API 错误时抛出 filesystem_error,使用 p 作为第一个参数,使用操作系统错误代码作为错误代码参数构建。 std::bad_alloc 可能在内存分配失败时被抛出。带 error_code& 参数的重载如果操作系统 API 调用失败则将其设置为操作系统 API 错误代码,如果未发生错误则执行 ec.clear()。此重载具有noexcept 规范:
noexcept
[编辑] 示例
运行此代码
#include <experimental/filesystem> #include <fstream> #include <iostream> namespace fs = std::experimental::filesystem; int main() { fs::path p = fs::current_path() / "example.bin"; std::ofstream(p).put('a'); // create file of size 1 std::cout << "File size = " << fs::file_size(p) << '\n'; fs::remove(p); try { fs::file_size("/dev"); // attempt to get size of a directory } catch (fs::filesystem_error& e) { std::cout << e.what() << '\n'; } }
可能的输出
File size = 1 filesystem error: cannot get file size: Is a directory [/dev]
[编辑] 另请参见
通过截断或零填充更改正则文件的大小 (函数) | |
确定文件系统上的可用空闲空间 (函数) |