#include <sys/statvfs.h> int fstatvfs64(int fildes, struct statvfs64 *buf);Service Program Name: QP0LLIB1
The fstatvfs64() function gets status information about the file system that contains the file referred to by the open file descriptor fildes. The information is stored in the area of memory indicated by the buf argument. The status information is returned in a statvfs64 structure, as defined in the <sys/statvfs.h> header file.
For details about parameters, authorities required, error conditions and examples, see fstatvfs()--Get File System Information by Descriptor. For details about the struct statvfs64 structure, see statvfs64()--Get File System Information (64-Bit Enabled).
Top | UNIX-Type APIs | APIs by category |