- statvfs PATHprocedure
Returns a vector of the following values for the filesystem at the path provided in the PATH string.
- (0) File system block size (f_bsize)
- (1) Fundamental file system block size (f_frsize)
- (2) Blocks on FS in units of f_frsize (f_blocks)
- (3) Free blocks (f_bfree)
- (4) Blocks available to non-root (f_bavail)
- (5) Total inodes (f_files)
- (6) Free inodes (f_ffree)
- (7) Free inodes for non-root (f_favail)
- (8) Filesystem ID (f_fsid)
- (9) Bit mask of values (f_flag)
- (10) Max file name length (f_namemax)
For more information, see man statvfs on your system.