I want to know that after using f_mkdir()
function I am creating "SENT" folder but in that folder, one more "SENT" file/folder is created which does not have any description.
iFResult = f_stat("/SENT" ,&File_Info); // Check "SENT" folder is
// present or not, if not present then create it.
if(iFResult > FR_OK)
{
iFResult = f_mkdir("/SENT"); // Create a new directory
}
I cannot understand the problem is with my code. Any help is appreciated.
[fatfs: Generic FAT Filesystem Module]