Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ dir(4) — Kubota Pacific 4.2 System Software

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

dirent(4)

fs(4)

DIR(4)  —  Kubota Pacfic Computer Inc.

NAME

dir − format of directories

SYNOPSIS

#include <sys/dir.h>

DESCRIPTION

A directory behaves exactly like an ordinary file, save that no user may write into a directory.  The fact that a file is a directory is indicated by a bit in the flag word of its i-node entry [see fs(4)]. The structure of a directory entry as given in the include file is:

#ifndefDIRSIZ
#defineDIRSIZ14
#endif
structdirect
{
ushortd_ino;
chard_name[DIRSIZ];
};

By convention, the first two entries in each directory are for . and ...  The first is an entry for the directory itself.  The second is for the parent directory.  The meaning of .. is modified for the root directory of the master file system; there is no parent, so .. has the same meaning as .. 

WARNING

This structure reflects only one of several possible directory formats.  A file system independent structure for directory entries is given in dirent(4). 

SEE ALSO

dirent(4), fs(4)

September 02, 1992

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026