package uring
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Module Statx.Mask
Source
The mask flags are used to tell the kernel which fields the statx
invocation is interested in. You may wish to use Mask.check
on the returned Statx.t
to verify the field has actually been filled in with a sensible value first. In general, the kernel never refused values specified in the mask, but may choose to not set the mask in the returned buffer from statx
.
Retrieve the kind of file field, accessible afterwards via Statx.kind
.
Retrieve the permissions field, accessible afterwards via Statx.perm
.
Retrieve the number of links field, accessible afterwards via Statx.nlink
.
Retrieve the last access field, accessible afterwards via atime_nsec
and atime_sec
.
Retrieve the last modification field, accessible afterwards via mtime_nsec
and mtime_sec
.
Retrieve the last status change field, accessible afterwards via ctime_nsec
and ctime_sec
.
Retrieve the total size in bytes, accessible afterwards via Statx.size
.
Retrieve the number of 512B blocks allocate, accessible afterwards via Statx.blocks
.
Retrieve the birthtime field, accessible afterwards via btime_nsec
and btime_sec
.