FS_ENTRY_INFO

typedef struct fs_entry_info {
    FS_FLAGS      Attrib; 
    FS_FILE_SIZE  Size; 
    CLK_TS_SEC    DateTimeCreate; 
    CLK_TS_SEC    DateAccess; 
    CLK_TS_SEC    DateTimeWr; 
    FS_SEC_QTY    BlkCnt; 
    FS_SEC_SIZE   BlkSize; 
  } FS_ENTRY_INFO;

File

Used for

fs_entry.h

Second argument of FSEntry_Query() and FSFileQuery();

The Info member of FS_DIR_ENTRY (struct fs_dirent)

Receives information about a file or directory.

Members

Attrib

The file or directory attributes (see File and Directory Attributes).

Size

The size of the file, in octets.

DateTimeCreate

The creation timestamp of the file or directory.

DateAccess

The last access date of the file or directory.

DateTimeWr

The last write (or modification) timestamp of the file or directory.

BlkCnt

The number of blocks allocated to the file. For a FAT file system, this is the number of clusters occupied by the file data.

BlkSize

The size of each block allocated in octets. For a FAT file system, this is the size of a cluster.

Notes

None.