Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 1.1 KB

space-info-structure.md

File metadata and controls

43 lines (32 loc) · 1.1 KB
description title ms.date f1_keywords ms.assetid
Learn more about: space_info Structure
space_info Structure
09/10/2018
filesystem/std::tr2::sys::space_info
f2b35b42-06ff-45bd-8617-39a0f5358a54

space_info Structure

Holds information about a volume.

Syntax

struct space_info
{
    uintmax_t capacity;
    uintmax_t free;
    uintmax_t available;
};

Members

Public Data Members

Name Description
unsigned long long capacity Represents the total number of bytes that the volume can represent.
unsigned long long free Represents the number of bytes that are not used to represent data on the volume.
unsigned long long available Represents the number of bytes that are available to represent data on the volume.

Requirements

Header: <filesystem>

Namespace: std::experimental::filesystem

See also

Header Files Reference
<filesystem>
File System Navigation (C++)