REWINDDIR(3) Library Functions Manual REWINDDIR(3)

rewinddirreset position of directory stream to the beginning of a directory

#include <sys/types.h>
#include <dirent.h>

void rewinddir(DIR *dirp);

The rewinddir() function resets the position of the directory stream to which dirp refers to the beginning of the directory. It also causes the directory stream to refer to the current state of the corresponding directory, as a call to opendir(3) would have done. If dirp does not refer to a directory stream, the effect is undefined.

After a call to the function, either the parent or child (but not both) may continue processing the directory stream using , or . If both the parent and child processes use these functions, the result is undefined.

The rewinddir() function does not return a value.

No errors are defined.

None.

The rewinddir() function should be used in conjunction with opendir(3) , readdir(3) and closedir(3) to examine the contents of the directory. This method is recommended for portability.

None.

closedir(3) , opendir(3) , readdir(3) , <dirent.h> , <sys/types.h> .

February 1997 posix.fail