This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi all,
I want to read long file name for USB flash drive using TM4C1294.
The sample codes show as below.
DIR dirs; FILINFO finfo; char path[255] ; TCHAR lfname[_MAX_LFN]; if (f_opendir(&dirs, path) == FR_OK) { finfo.lfname = lfname; finfo.lfsize = _MAX_LFN - 1; if(f_readdir(&dirs, &finfo) == FR_OK) { if(!finfo.fname[0]) { UartPrintf("No Data\n"); return; } UartPrintf("File fn: %s\n",finfo.fname); UartPrintf("File lfn: %s\n",finfo.lfname); } else { UartPrintf("EOF\n"); } }
I can read the correct fname but the lfname is always show "???????" .
In the ffconf.h setting I modified some define value.
#define _USE_LFN 2
Should I set any other define value to let the lfname working?
Thanks for your help
Best Regards
Arthur
Hello Arthur,
From what I see on the included documentation for the FatFs library used in TivaWare, LFN is not supported:
It may be possible to get this support with a newer version of FatFs but what comes with TivaWare would seem to be unable to support that feature.
You can find this documentation at [Install Path]\TivaWare_C_Series-2.2.0.295\third_party\fatfs\doc\00index_e.html
Best Regards,
Ralph Jacobi