Home
last modified time | relevance | path

Searched refs:fno (Results 1 – 2 of 2) sorted by relevance

/fatfs-2.7.6/include/
Dff.h314 FRESULT f_readdir (DIR* dp, FILINFO* fno); /* Read a directory item */
315 FRESULT f_findfirst (DIR* dp, FILINFO* fno, const TCHAR* path, const TCHAR* pattern); /* Find first…
316 FRESULT f_findnext (DIR* dp, FILINFO* fno); /* Find next file */
320 FRESULT f_stat (const TCHAR* path, FILINFO* fno); /* Get file status */
322 FRESULT f_utime (const TCHAR* path, const FILINFO* fno); /* Change timestamp of a file/dir */
/fatfs-2.7.6/
Dff.c2588 FILINFO* fno /* Pointer to the file information to be filled */ argument
2602 fno->fname[0] = 0; /* Invaidate file info */
2619 …nw = put_utf((DWORD)hs << 16 | wc, &fno->fname[di], FF_LFN_BUF - di); /* Store it in API encoding …
2625 if (di == 0) fno->fname[di++] = '?'; /* Inaccessible object name? */
2626 fno->fname[di] = 0; /* Terminate the name */
2627 fno->altname[0] = 0; /* exFAT does not support SFN */
2629 fno->fattrib = fs->dirbuf[XDIR_Attr] & AM_MASKX; /* Attribute */
2630 fno->fsize = (fno->fattrib & AM_DIR) ? 0 : ld_qword(fs->dirbuf + XDIR_FileSize); /* Size */
2631 fno->ftime = ld_word(fs->dirbuf + XDIR_ModTime + 0); /* Time */
2632 fno->fdate = ld_word(fs->dirbuf + XDIR_ModTime + 2); /* Date */
[all …]