I wonder if someone has found a problem trying to open files from the SD card that are stored in a folder, while programming in C.
I am having this problem while calling function Bfile_OpenFile() in the SDK emulator. I have a fx9860g slim so I do not know if in the real calculator it happens the same or it is just a problem in the emulator.
I have tryed to read files from folders in the storage memory and everything is fine, and also tryed files stored in the root directory of the SD card, and it works.
To put an example, this piece of source code is failing all the time, and the file referred exists:
[codebox] //Variables
int iHandle;
FONTCHARACTER sFont[]={'\\','\\','c','r','d','0','\\','f','o','l','d','e','r','1','\\','f','i','l','e','.','t','x','t',0};
//Open file
iHandle=Bfile_OpenFile(sFont,_OPENMODE_READ);[/codebox]
Variable iHandle is getting -1 everytime.
Does anyone has found this problem?
I am going crazy...

Thanks
Diego.