Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
DIR.5
Upload User: jnzhq888
Upload Date: 2007-01-18
Package Size: 51694k
Code Size: 1k
Category:
OS Develop
Development Platform:
WINDOWS
- DIR(5) Minix Programmer's Manual DIR(5)
- NAME
- dir - directory layout
- SYNOPSIS
- #include <sys/types.h>
- #include <sys/dir.h>
- DESCRIPTION
- The directories of the V1 and V2 file systems are arrays of the following
- structure defined in <sys/dir.h>:
- struct direct {
- ino_t d_ino; /* I-node number */
- char d_name[14]; /* Name of up to 14 characters */
- };
- The d_ino field is the inode number of the file named by d_name. D_ino
- is zero if the directory slot isn't allocated. This number is the same
- as st_ino returned by stat(2) unless the entry is mounted on. D_name is
- the name of up to 14 characters, null-terminated only if less then 14 in
- length. Any character other than null or '/' is allowed.
- See directory(3) for a portable way to access directories, Minix is
- probably the last system with these old V7 format directories.
- SEE ALSO
- directory(3).
- AUTHOR
- Kees J. Bot (kjb@cs.vu.nl)
- 1