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.

Compiler/CC3220SF-LAUNCHXL: cc3220sf

Part Number: CC3220SF-LAUNCHXL
Other Parts Discussed in Thread: CC3200

Tool/software: TI C/C++ Compiler

Hi,

I use ti file system to read and write my files.

i write a file using sl_FsOpen

lFileHandle= sl_FsOpen((unsigned char *)DeviceFileName,FS_MODE_OPEN_CREATE(MaxSize), SL_FS_CREATE| SL_FS_WRITE,&DeviceFileHandle);

if( lFileHandle > 0 ) then i write file

lRetVal = sl_FsWrite(lFileHandle, 0, pData, Data Length);

i get lRetVal  > 0

lRetVal = sl_FsClose(lFileHandle, NULL, NULL, 0);

i get lRetVal  > 0

now:

when i request files list using api 

_i32  sl_FsGetFileList(_i32* pIndex, _u8 Count, _u8 MaxEntryLen , _u8* pBuff, SlFileListFlags_t Flags )

i m not see this new file on the list even i write again to the file.

advice

Thank you