Legacy Documentclose button

Important: The information in this document is obsolete and should not be used for new development.

Previous Book Contents Book Index Next

Inside Macintosh: Files /
Chapter 1 - Introduction to File Management / File Management Reference
Data Structures


File System Specification Record

The file system specification record for files and directories is defined by the FSSpec data type.

TYPE FSSpec =              {file system specification}
RECORD
   vRefNum:    Integer;    {volume reference number}
   parID:      LongInt;    {directory ID of parent directory}
   name:       Str63;      {filename or directory name}
END;
Field Description
vRefNum
The volume reference number of the volume containing the specified file or directory.
parID
The directory ID of the directory containing the specified file
or directory.
name
The name of the specified file or directory.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
2 JUL 1996