1 .\" Copyright (c) 1983, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" @(#)directory.3 8.1 (Berkeley) 6/4/93
44 .Nd directory operations
50 .Fn opendir "const char *filename"
52 .Fn fdopendir "int fd"
54 .Fn readdir "DIR *dirp"
56 .Fn readdir_r "DIR *dirp" "struct dirent *entry" "struct dirent **result"
58 .Fn telldir "DIR *dirp"
60 .Fn seekdir "DIR *dirp" "long loc"
62 .Fn rewinddir "DIR *dirp"
64 .Fn closedir "DIR *dirp"
71 interface is deprecated
72 because it cannot be used correctly unless
80 opens the directory named by
86 returns a pointer to be used to identify the
88 in subsequent operations.
93 cannot be accessed, or if it cannot
95 enough memory to hold the whole thing.
99 function is equivalent to the
101 function except that the directory is specified by a file descriptor
103 rather than by a name.
104 ./"The file offset associated with the file descriptor at the time of the call
105 ./"determines which entries are returned.
107 Upon successful return from
109 the file descriptor is under the control of the system,
110 and if any attempt is made to close the file descriptor,
111 or to modify the state of the associated description other than by means
118 the behavior is undefined.
121 the file descriptor is closed.
124 flag is set on the file descriptor by a successful call to
130 returns a pointer to the next directory entry.
131 The directory entry remains valid until the next call to
136 .Em directory stream .
139 upon reaching the end of the directory or on error.
140 In the event of an error,
142 may be set to any of the values documented for the
144 system call. Note that the order of the directory entries vended by
147 Some filesystems may return entries in lexicographic sort order and others may not.
148 Also note that not all filesystems will provide a value for
150 and may instead set the field to
156 provides the same functionality as
158 but the caller must provide a directory
160 buffer to store the results in.
161 The buffer must be large enough for a
168 If the read succeeds,
172 upon reaching the end of the directory
179 returns 0 on success or an error number to indicate failure.
184 returns a token representing the current location associated with the named
185 .Em directory stream .
188 are good only for the lifetime of the
192 from which they are derived.
193 If the directory is closed and then
194 reopened, prior values returned by
196 will no longer be valid.
199 are also invalidated by a call to
205 sets the position of the next
208 .Em directory stream .
209 The new position reverts to the one associated with the
213 operation was performed.
218 resets the position of the named
220 to the beginning of the directory.
227 and frees the structure associated with the
230 returning 0 on success.
231 On failure, \-1 is returned and the global variable
233 is set to indicate the error.
238 returns the integer file descriptor associated with the named
239 .Em directory stream ,
243 Sample code which searches a directory for entry ``name'' is:
244 .Bd -literal -offset indent
249 while ((dp = readdir(dirp)) != NULL) {
250 if (dp->d_namlen == len && strcmp(dp->d_name, name) == 0) {
251 (void)closedir(dirp);
255 (void)closedir(dirp);
274 functions appeared in