Query: rewinddir
OS: opensolaris
Section: 3c
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
rewinddir(3C) Standard C Library Functions rewinddir(3C)NAMErewinddir - reset position of directory stream to the beginning of a directorySYNOPSIS#include <sys/types.h> #include <dirent.h> void rewinddir(DIR *dirp);DESCRIPTIONThe 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(3C) would have done. If dirp does not refer to a directory stream, the effect is undefined. After a call to the fork(2) function, either the parent or child (but not both) may continue processing the directory stream using read- dir(3C), rewinddir() or seekdir(3C). If both the parent and child processes use these functions, the result is undefined.RETURN VALUESThe rewinddir() function does not return a value.ERRORSNo errors are defined.USAGEThe rewinddir() function should be used in conjunction with opendir(), readdir(), and closedir(3C) to examine the contents of the direc- tory. This method is recommended for portability.ATTRIBUTESSee attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+SEE ALSOfork(2), closedir(3C), opendir(3C), readdir(3C), seekdir(3C), attributes(5), standards(5) SunOS 5.11 14 Aug 2002 rewinddir(3C)
Related Man Pages |
---|
seekdir(3) - bsd |
dirfd(3) - osx |
opendir(3) - osx |
readdir(3) - osx |
rewinddir(3p) - posix |
Similar Topics in the Unix Linux Community |
---|
opendir() + customly created directories |
parent and child directory |
Parent directory ".." |