Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

metadata_flags

Bitflags for availability of metadata from struct stat_tSee afio_stat_t for explanation of meaning.

Synopsis
enum metadata_flags {None = 0, dev = 1<<0, ino = 1<<1, type = 1<<2, perms = 1<<3, nlink = 1<<4, uid = 1<<5, gid = 1<<6, rdev = 1<<7, atim = 1<<8, mtim = 1<<9, ctim = 1<<10, size = 1<<11, allocated = 1<<12, blocks = 1<<13, blksize = 1<<14, flags = 1<<15, gen = 1<<16, birthtim = 1<<17, sparse = 1<<24, compressed = 1<<25, reparse_point = 1<<26, All = (size_t)-1};
Values

Value

Description

None

dev

ino

type

perms

nlink

uid

gid

rdev

atim

mtim

ctim

size

allocated

blocks

blksize

flags

gen

birthtim

sparse

compressed

reparse_point

All

Return the maximum possible metadata.

Header

#include <boost/afio/v2/afio.hpp>


PrevUpHomeNext