f_getfree()函数问题

2019-08-16 17:43发布

FRESULT f_getfree (  const TCHAR* path,  /* [IN] Logical drive number */                               DWORD* nclst,       /* [OUT] Number of free clusters */  
                             FATFS** fatfs       /* [OUT] Corresponding file system object */);

/* Get volume information and free clusters of drive 1 */   
res = f_getfree("1:", &fre_clust, &fs);   
if (res) die(res);   
/* Get total sectors and free sectors */   
tot_sect = (fs->n_fatent - 2) * fs->csize;    fre_sect = fre_clust * fs->csize;

想问一下,fs不是一个指向结构体指针的指针吗,这里应该没有直接指向文件系统结构体吧,为啥可以直接操作结构体的元素?不知道我这么理解对不对。


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