1GETDIRENTRIES(3) Linux Programmer's Manual GETDIRENTRIES(3)
2
3
4
6 getdirentries - get directory entries in a file system-independent for‐
7 mat
8
10 #include <dirent.h>
11
12 ssize_t getdirentries(int fd, char *buf, size_t nbytes , off_t *basep);
13
14 Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
15
16 getdirentries(): _BSD_SOURCE || _SVID_SOURCE
17
19 Read directory entries from the directory specified by fd into buf. At
20 most nbytes are read. Reading starts at offset *basep, and *basep is
21 updated with the new position after reading.
22
24 getdirentries() returns the number of bytes read or zero when at the
25 end of the directory. If an error occurs, -1 is returned, and errno is
26 set appropriately.
27
29 See the Linux library source code for details.
30
32 Not in POSIX.1-2001. Present on the BSDs, and a few other systems.
33 Use opendir(3) and readdir(3) instead.
34
36 lseek(2), open(2)
37
39 This page is part of release 3.53 of the Linux man-pages project. A
40 description of the project, and information about reporting bugs, can
41 be found at http://www.kernel.org/doc/man-pages/.
42
43
44
45GNU 2007-07-26 GETDIRENTRIES(3)