Hola,
Quiero abrir un directorio y leer los ficheros que hay en el.
res= R_tfat_f_opendir(&fl_dir," ");
if( res != TFAT_FR_OK ){
/* Error while opening the file for reading */
R_Fl_Error(ERROR_FILE_OPEN);
}
res=R_tfat_f_readdir(&fl_dir,&fl_info);
if( res != TFAT_FR_OK ){
/* Error while opening the file for reading */
R_Fl_Error(ERROR_FILE_READ);
}
Solo quiero quedarme con un fichero que termine sea ".mot"
¿Cómo se puede decir que se quede solo con ficheros y no carpetas y que de esos ficheros solo busque los que son .mot?
Gracias