dirent.h
From Wikipedia, the free encyclopedia
C POSIX Library headers |
---|
cpio.h |
dirent.h |
fcntl.h |
grp.h |
pwd.h |
sys/ipc.h |
sys/msg.h |
sys/sem.h |
sys/stat.h |
sys/time.h |
sys/types.h |
sys/utsname.h |
sys/wait.h |
tar.h |
termios.h |
unistd.h |
utime.h |
dirent.h is the header in the C POSIX library for the C programming language that contains constructs that facilitate directory traversing. The function is not part of the C standard, but is considered "pseudo-standard" and is reliably portable between platforms.
[edit] Member functions
Name | Notes |
---|---|
int closedir(DIR* dirp) |
Closes the directory stream referred to by dirp . Upon return, dirp may no longer point to an accessible object of the type DIR. If a file descriptor is used to implement type DIR, that file descriptor will be closed. Upon successful completion, closedir() returns 0. Otherwise, -1 is returned and errno is set to indicate the error.
|
DIR* opendir(const char* dirname) |
Opens a directory stream corresponding to the directory named by dirname . The directory stream is positioned at the first entry. If the type DIR is implemented using a file descriptor, applications will only be able to open up to a total of OPEN_MAX files and directories. Upon successful completion, opendir() returns a pointer to an object of type DIR. Otherwise, a null pointer is returned and errno is set to indicate the error.
|
struct dirent* readdir(DIR* dirp) |
Returns a pointer to a structure representing the directory entry at the current position in the directory stream specified by the argument dirp , and positions the directory stream at the next entry. It returns a null pointer upon reaching the end of the directory stream. If entries for dot or dot-dot exist, one entry will be returned for dot and one entry will be returned for dot-dot; otherwise they will not be returned. When an error is encountered, a null pointer is returned and errno is set to indicate the error. When the end of the directory is encountered, a null pointer is returned and errno is not changed.
|
int readdir_r(DIR* dirp, struct dirent* entry, struct dirent** result) |
Initialises entry to represent the directory entry at the current position in dirp , store a pointer to this structure at the location referenced by result , and positions the directory stream at the next entry. The storage pointed to by entry will be large enough for a dirent with an array of char d_name member containing at least NAME_MAX plus one elements. On successful return, the pointer returned at *result will have the same value as the argument entry. Upon reaching the end of the directory stream, this pointer will have the value NULL.
|
void rewinddir(DIR* dirp) |
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() would have done. If dirp does not refer to a directory stream, the effect is undefined. |
void seekdir(DIR* dirp, long int loc) |
Sets the position of the next readdir() operation on the directory stream specified by dirp to the position specified by loc. The value of loc should have been returned from an earlier call to telldir(). The new position reverts to the one associated with the directory stream when telldir() was performed. If the value of loc was not obtained from an earlier call to telldir() or if a call to rewinddir() occurred between the call to telldir() and the call to seekdir(), the results of subsequent calls to readdir() are unspecified. |
long int telldir(DIR*) |
Obtains the current location associated with the directory stream specified by dirp. If the most recent operation on the directory stream was a seekdir(), the directory position returned from the telldir() is the same as that supplied as a loc argument for seekdir(). Upon successful completion, telldir() returns the current location of the specified directory stream. |
[edit] Member constants
Constants defined in the stdio.h
header include:
Name | Notes |
---|---|
NAME_MAX |
The maximum length of the char array d_name . |
[edit] Member Types
Data types defined in the dirent.h
header include:
DIR
- A structure representing a directory stream. Contains the following members
-
struct _finddata_t dd_dta
- disk transfer areastruct dirent dd_dir
- dirent structurelong dd_handle
int dd_stat
- status of search: 0 = not started yet, -1 = off the end, positive = 0-based index of next entry
struct dirent
- A structure with the following members:
-
off_t d_off
- not in all implimentationsunsigned short d_namlen
- Length of name in d_nameunsigned short d_reclen
ino_t d_ino
- file serial numberchar d_name[]
- name of entry (will not exceed a size of NAME_MAX)