Namespaces
Variants
Actions

std::filesystem::space_info

From cppreference.com
 
 
 
Defined in header <filesystem>
struct space_info {

    std::uintmax_t capacity;
    std::uintmax_t free;
    std::uintmax_t available;

};
(since C++17)

Represents the filesystem information as determined by filesystem::space.

Contents