[Overview][Constants][Types] Reference for unit 'unixtype' (#rtl)

TStatfs

Record describing a file system in the baseunix.fpstatfs call.

Declaration

Source position: ptypes.inc line 128

type TStatfs = packed record

  fstype: cInt;

  

File system type

  bsize: cInt;

  

Block size

  blocks: cLong;

  

Total number of blocks

  bfree: cLong;

  

Number of free blocks

  bavail: cLong;

  

Number of available blocks

  files: cLong;

  

Number of files

  ffree: cLong;

  

?

  fsid: array [0..1] of cInt;

  

?

  namelen: cLong;

  

Max name length for files.

  spare: array [0..5] of cLong;

  

Pad bytes. Do not use.

end;