std::filesystem::space_info

来自cppreference.com
 
 
 
定义于头文件 <filesystem>
struct space_info {

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

};
(C++17 起)

代表如 space 所确定的文件系统信息。

成员拥有下列含义:

  • capacity ——文件系统的总大小,以字节计
  • free ——文件系统的空闲空间,以字节计
  • available ——无特权进程可用的空闲空间(可以小于或等于 free

示例

#include <iostream>
#include <filesystem>
namespace fs = std::filesystem;
int main()
{
    fs::space_info devi = fs::space("/dev/null");
    fs::space_info tmpi = fs::space("/tmp");
 
    std::cout << ".        Capacity       Free      Available\n"
              << "/dev:   " << devi.capacity << "   "
              << devi.free << "   " << devi.available  << '\n'
              << "/tmp: " << tmpi.capacity << " "
              << tmpi.free << " " << tmpi.available  << '\n';
}

可能的输出:

.         Capacity       Free      Available
/dev:   4175114240   4175110144   4175110144
/tmp: 420651237376 411962273792 390570749952

参阅

(C++17)
确定文件系统上的可用空闲空间
(函数)