Путеводитель по Руководству Linux

  User  |  Syst  |  Libr  |  Device  |  Files  |  Other  |  Admin  |  Head  |



   rewinddir.3p    ( 3 )

сбросить позицию потока каталога в начало каталога (reset the position of a directory stream to the beginning of a directory)

Пролог (Prolog)

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.


Имя (Name)

rewinddir — reset the position of a directory stream to the beginning of a directory


Синопсис (Synopsis)

#include <dirent.h>

void rewinddir(DIR *dirp);


Описание (Description)

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

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


Возвращаемое значение (Return value)

The rewinddir() function shall not return a value.


Ошибки (Error)

No errors are defined.

The following sections are informative.


Примеры (Examples)

None.

Использование в приложениях (Application usage)

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


Обоснование (Rationale)

None.


Будущие направления (Future directions)

None.


Смотри также (See also)

closedir(3p), fdopendir(3p), readdir(3p)

The Base Definitions volume of POSIX.1‐2017, dirent.h(0p), sys_types.h(0p)