.\" Copyright (C) 1993 David Metcalfe (david@prism.demon.co.uk) .\" .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are .\" preserved on all copies. .\" .\" Permission is granted to copy and distribute modified versions of this .\" manual under the conditions for verbatim copying, provided that the .\" entire resulting derived work is distributed under the terms of a .\" permission notice identical to this one .\" .\" Since the Linux kernel and libraries are constantly changing, this .\" manual page may be incorrect or out-of-date. The author(s) assume no .\" responsibility for errors or omissions, or for damages resulting from .\" the use of the information contained herein. The author(s) may not .\" have taken the same level of care in the production of this manual, .\" which is licensed free of charge, as they might when working .\" professionally. .\" .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" .\" References consulted: .\" Linux libc source code .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 16:09:49 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified 11 June 1995 by Andries Brouwer (aeb@cwi.nl) .\" Modified 22 July 1996 by Andries Brouwer (aeb@cwi.nl) .\" Modified 25 July 1997 by Nicolás Lichtmaier .\" .\" Translated into Spanish Thu Mar 5 17:26:31 CET 1998 by Gerardo .\" Aburruzaga García .\" .TH READDIR 3 "25 Julio 1997" "Linux" "Manual del Programador de Linux" .SH NOMBRE readdir \- lee un directorio .SH SINOPSIS .nf .B #include .sp .B #include .sp .BI "struct dirent *readdir(DIR *" dir ); .fi .SH DESCRIPCIÓN La función \fBreaddir()\fP devuelve un puntero a una estructura dirent que representa la siguiente entrada de directorio en el flujo de directorio al que apunte \fIdir\fP. Devuelve NULL cuando alcanza el fin-de-fichero o si hay un error. .PP Según POSIX, la estructura .I dirent contiene un campo .I "char d_name[]" de tamaño no especificado, con .B NAME_MAX caracteres como mucho precediendo al carácter cero terminador. El empleo de otros campos perjudicará la transportabilidad de sus programas. En POSIX-2001 también aparece el campo .I "ino_t d_ino" como una extensión de XSI. .PP Los datos devueltos por \fBreaddir()\fP pueden ser sobreescritos por llamadas posteriores a \fBreaddir()\fP para el mismo flujo de directorio. .SH "VALOR DEVUELTO" La función \fBreaddir()\fP devuelve un puntero a una estructura dirent, o NULL si ocurre un error o se alcanza el fin-de-fichero. .SH "ERRORES" .TP .B EBADF Descriptor de flujo de directorio inválido \fIdir\fP. .SH "CONFORME A" SVID 3, POSIX, BSD 4.3 .SH "VÉASE TAMBIÉN" .BR read (2), .BR closedir (3), .BR dirfd (3), .BR opendir (3), .BR rewinddir (3), .BR scandir (3), .BR seekdir (3), .BR telldir (3)