'\" te .\" Copyright (c) 2003, Sun Microsystems, Inc. All Rights Reserved. .\" Copyright 1989 AT&T .TH dir_ufs 4 "16 Apr 2003" "SunOS 5.11" "File Formats" .SH NAME dir_ufs, dir \- format of ufs directories .SH SYNOPSIS .LP .nf \fB#include \fR .fi .LP .nf \fB#include \fR .fi .LP .nf \fB#include \fR .fi .SH DESCRIPTION .sp .LP A directory consists of some number of blocks of \fBDIRBLKSIZ\fR bytes, where \fBDIRBLKSIZ\fR is chosen such that it can be transferred to disk in a single atomic operation, for example, 512 bytes on most machines. .sp .LP Each \fBDIRBLKSIZ\fR-byte block contains some number of directory entry structures, which are of variable length. Each directory entry has a \fBstruct direct\fR at the front of it, containing its inode number, the length of the entry, and the length of the name contained in the entry. These entries are followed by the name padded to a 4 byte boundary with null bytes. All names are guaranteed null-terminated. The maximum length of a name in a directory is \fBMAXNAMLEN\fR. .sp .in +2 .nf #define DIRBLKSIZ DEV_BSIZE #define MAXNAMLEN 256 struct direct { ulong_t d_ino; /* inode number of entry */ ushort_t d_reclen; /* length of this record */ ushort_t d_namlen; /* length of string in d_name */ char d_name[MAXNAMLEN + 1]; /* maximum name length */ }; .fi .in -2 .SH ATTRIBUTES .sp .LP See \fBattributes\fR(5) for a description of the following attributes: .sp .sp .TS tab() box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPEATTRIBUTE VALUE _ Interface StabilityUncommitted .TE .SH SEE ALSO .sp .LP \fBattributes\fR(5), \fBufs\fR(7FS)