typedef struct { UWORD mode; LONG index; UWORD dev; UWORD reserved1; UWORD nlink; UWORD uid; UWORD gid; LONG size; LONG blksize; LONG nblocks; WORD mtime; WORD mdate; WORD atime; WORD adate; WORD ctime; WORD cdate; WORD attr; WORD reserved2; LONG reserved3; LONG reserved4; } XATTR;
XATTR Element | Meaning |
mode | Masking mode with #0xF000 reveals the file type as one of the following: S_IFCHR (0x2000) S_IFDIR (0x4000) S_IFREG (0x8000) S_IFIFO (0xA000) S_IMEM (0xC000) S_IFLNK (0xE000) The lower 3 nibbles of mode is a bit mask which specifies the legal file access mode(s) as defined in Fchmod()?. |
index | This member combined with the dev field are designed to provide a unique identifier for a file under file systems which allow multiple files with the same filename. |
dev | This value represents either a BIOS device number or an identifier created by the file system to represent a remote device. |
reserved1 | This structure element is currently reserved for future implementations of MiNT. |
nlink | This value specifies the current number of hard links attached to the file. On a file system that does not support hard links and for most regular files, nlink is 1. |
uid | uid is the user ID of the owner of the file. |
gid | gid is the group ID of the owner of the file. |
size | size is the length of the file in bytes. |
blksize | blksize specifies the size of blocks (in bytes) in this file system. |
nblocks | nblocks is the actual number of blocks the file is using on the device. This number may include data storage elements other used to keep track of the file (aside from the actual data). |
mtime, mdate | Time and date of the last file modification in GEMDOS format. |
atime, adate | Time and date of the last file access in GEMDOS format. |
ctime, cdate | Time and date of the file's creation in GEMDOS format. |
attr | Standard file attributes (same as read by Fattrib()?). |
reserved2 | This structure element is currently reserved for future implementations of MiNT. |
reserved3 | This structure element is currently reserved for future implementations of MiNT. |
reserved4 | This structure element is currently reserved for future implementations of MiNT. |