STM32F407 FATFS R0.13a 怎么读取FIL 文件大小

2019-07-20 07:05发布

本帖最后由 十里荷香 于 2018-7-19 10:19 编辑

请教各位大神,有谁用的是 FATFS R0.13a的版本

/* File object structure (FIL) */

typedef struct {
        FFOBJID        obj;                        /* Object identifier (must be the 1st member to detect invalid object pointer) */
        BYTE        flag;                        /* File status flags */
        BYTE        err;                        /* Abort flag (error code) */
        FSIZE_t        fptr;                        /* File read/write pointer (Zeroed on file open) */
        DWORD        clust;                        /* Current cluster of fpter (invalid when fptr is 0) */
        DWORD        sect;                        /* Sector number appearing in buf[] (0:invalid) */
        
#if !FF_FS_READONLY
        DWORD        dir_sect;                /* Sector number containing the directory entry (not used at exFAT) */
        BYTE*        dir_ptr;                /* Pointer to the directory entry in the win[] (not used at exFAT) */
#endif
#if FF_USE_FASTSEEK
        DWORD*        cltbl;                        /* Pointer to the cluster link map table (nulled on open, set by application) */
#endif
#if !FF_FS_TINY
        BYTE        buf[FF_MAX_SS];        /* File private data read/write window */
#endif
} FIL;


FIL怎么没有了DWORD        fsize;                        /* File size */  
原来R0.1都有的啊

/* File object structure (FIL) */

typedef struct {
        FATFS*        fs;                                /* Pointer to the related file system object (**do not change order**) */
        WORD        id;                                /* Owner file system mount ID (**do not change order**) */
        BYTE        flag;                        /* Status flags */
        BYTE        err;                        /* Abort flag (error code) */
        DWORD        fptr;                        /* File read/write pointer (Zeroed on file open) */
        DWORD        fsize;                        /* File size */
        DWORD        sclust;                        /* File start cluster (0:no cluster chain, always 0 when fsize is 0) */
        DWORD        clust;                        /* Current cluster of fpter (not valid when fprt is 0) */
        DWORD        dsect;                        /* Sector number appearing in buf[] (0:invalid) */
#if !_FS_READONLY
        DWORD        dir_sect;                /* Sector number containing the directory entry */
        BYTE*        dir_ptr;                /* Pointer to the directory entry in the win[] */
#endif
#if _USE_FASTSEEK
        DWORD*        cltbl;                        /* Pointer to the cluster link map table (Nulled on file open) */
#endif
#if _FS_LOCK
        UINT        lockid;                        /* File lock ID origin from 1 (index of file semaphore table Files[]) */
#endif
#if !_FS_TINY
        BYTE        buf[_MAX_SS];        /* File private data read/write window */
#endif
} FIL;

这个我现在要怎么知道打开文件的大小?



友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。