Represents the filesystem information as determined by filesystem::space
.
free
)
space_info
s
friend bool operator==( const space_info&, const space_info& ) = default;
(since C++20)Checks if capacity
, free
and available
of both arguments are equal respectively.
This function is not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup when std::filesystem::space_info is an associated class of the arguments.
The !=
operator is synthesized from operator==
.
#include <cstdint> #include <filesystem> #include <iostream> #include <locale> std::uintmax_t disk_usage_percent(const std::filesystem::space_info& si, bool is_privileged = false) noexcept { if (constexpr std::uintmax_t X(-1); si.capacity == 0 || si.free == 0 || si.available == 0 || si.capacity == X || si.free == X || si.available == X ) return 100; std::uintmax_t unused_space = si.free, capacity = si.capacity; if (!is_privileged) { const std::uintmax_t privileged_only_space = si.free - si.available; unused_space -= privileged_only_space; capacity -= privileged_only_space; } const std::uintmax_t used_space{capacity - unused_space}; return 100 * used_space / capacity; } void print_disk_space_info(auto const& dirs, int width = 14) { (std::cout << std::left).imbue(std::locale("en_US.UTF-8")); for (const auto s : {"Capacity", "Free", "Available", "Use%", "Dir"}) std::cout << "â " << std::setw(width) << s << ' '; for (std::cout << '\n'; auto const& dir : dirs) { std::error_code ec; const std::filesystem::space_info si = std::filesystem::space(dir, ec); for (auto x : {si.capacity, si.free, si.available, disk_usage_percent(si)}) std::cout << "â " << std::setw(width) << static_cast<std::intmax_t>(x) << ' '; std::cout << "â " << dir << '\n'; } } int main() { const auto dirs = {"/dev/null", "/tmp", "/home", "/proc", "/null"}; print_disk_space_info(dirs); }
Possible output:
â Capacity â Free â Available â Use% â Dir â 84,417,331,200 â 42,732,986,368 â 40,156,028,928 â 50 â /dev/null â 84,417,331,200 â 42,732,986,368 â 40,156,028,928 â 50 â /tmp â -1 â -1 â -1 â 100 â /home â 0 â 0 â 0 â 100 â /proc â -1 â -1 â -1 â 100 â /null[edit] See also determines available free space on the file system
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4