Query: dirent
OS: hpux
Section: 5
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
dirent(5) File Formats Manual dirent(5)NAMEdirent.h - format of directory streams and directory entriesSYNOPSISDESCRIPTIONThis header file defines data types used by the directory stream routines described in directory(3C). The following data types are defined: A structure containing information about an open directory stream. A structure defining the format of entries returned by the function (see directory(3C)). The structure includes the following members: char d_name[MAXNAMLEN+1]; /* name of directory entry */ ino_t d_ino; /* file serial number */ short d_namlen; /* length of string in d_name */ short d_reclen; /* length of this record */ The constant is defined in Note that the entry is used internally to represent the offset from the current entry to the next valid entry. Therefore, is not the length of the current entry, but the length of the current record where a record is an entry plus any currently unused space between the current entry and the next valid entry. The unused space between valid entries results from changes in a directory's contents, such as the deletion of files and other directories. This file also contains external declarations for the functions that perform directory operations (see directory(3C)).WARNINGSFor 32-bit applications, the d_ino field may overflow for filesystems that use 64-bit values. In this case, the most-significant bytes will be truncated without error, and the value may not be unique.AUTHORwas developed by AT&T and HP.SEE ALSOdirectory(3C).STANDARDS CONFORMANCEdirent(5)
Related Man Pages |
---|
dir(5) - mojave |
dirent(5) - mojave |
dir(5) - ultrix |
dirent(5) - freebsd |
dirent.h(3head) - centos |
Similar Topics in the Unix Linux Community |
---|
Find the size of a directory |
Creating new file with new record length |
Unicode filenames in C++? |
Deleting record in a file by looking up another file |
Process the record only for defined length |