[Overview][Constants][Types][Procedures and functions] Reference for unit 'BaseUnix' (#rtl)

Dirent

Record used in the fpReadDir function to return files in a directory.

Declaration

Source position: ostypes.inc line 139

type Dirent = packed record

  d_fileno: ino_t;

  

Inode number of file

  d_off: off_t;

  

Offset in directory.

  d_reclen: cushort;

  

Record length

  d_name: array [0..(255+1)-1] of Char;

  

Name of file

end;