devela::_dep::rustix::fs

Function fstatfs

pub fn fstatfs<Fd>(fd: Fd) -> Result<statfs64, Errno> 
where Fd: AsFd,
Available on crate feature dep_rustix only.
Expand description

fstatfs(fd)—Queries filesystem statistics for an open file or directory.

Compared to fstatvfs, this function often provides more information, though it’s less portable.

§References