std::experimental::filesystem::space_info (3) - Linux Manuals
std::experimental::filesystem::space_info: std::experimental::filesystem::space_info
NAME
std::experimental::filesystem::space_info - std::experimental::filesystem::space_info
Synopsis
Defined in header <experimental/filesystem>
struct space_info {
uintmax_t capacity;
uintmax_t free; (filesystem TS)
uintmax_t available;
};
Represents the filesystem information as determined by space
The members have the following meaning:
* capacity -- total size of the filesystem, in bytes
* free -- free space on the filesystem, in bytes
* available -- free space available to a non-privileged process (may be equal or less than free)
Example
// Run this code
Possible output:
See also
space (function)