FS_DIR_ENTRY (struct fs_dirent)

typedef struct fs_dirent {
    CPU_CHAR       Name[FS_CFG_MAX_FILE_NAME_LEN + 1u];
    FS_ENTRY_INFO  Info;
  } FS_DIR_ENTRY;

File

Used for

fs_dir.h

Second argument of fs_readdir_r() and FSDir_Rd()

Receives information about a directory entry.

Members

Name

The name of the file.

Info

Entry information. For more information, see FS_ENTRY_INFO.

Notes

None.