c linux dir readdir dirent.h

Miembros de la estructura de Dirent



linux readdir (3)

Comencé a trabajar con la biblioteca dirent.h y me encontré con un miembro muy útil de la estructura "struct dirent", que struct dirent * p-> d_name en mi libro. Pero desafortunadamente no establece ningún otro miembro de esta estructura;

Me preguntaba qué más son los miembros de esta estructura y para qué se usan.

Saludos


Además de la respuesta anterior de @Binyamin Sharet:

off_t d_off - file offset unsigned short int d_reclen - length of the dirent record unsigned short int d_namlen - length of name unsigned int d_type - type of file


La estructura, struct dirent refiere a la entrada de directorio.

http://www.gnu.org/software/libc/manual/html_node/Directory-Entries.html

En linux se define como:

struct dirent { ino_t d_ino; /* inode number */ off_t d_off; /* offset to the next dirent */ unsigned short d_reclen; /* length of this record */ unsigned char d_type; /* type of file; not supported by all file system types */ char d_name[256]; /* filename */ };

referir: man readdir

O simplemente busque "dirent.h" en el directorio de inclusión.


Solo hay dos miembros (de wikipedia ):

  • ino_t d_ino - número de serie del archivo
  • char d_name[] : nombre de la entrada (no superará el tamaño de NAME_MAX)

Echa un vistazo a las especificaciones de Unix también.