For my color monster game, I've been looking into SdFat. I've been able to write to a file in the root directory. I haven't been able to write a file in a subdirectory. I'd much rather save information in the game directory than in root. I did tried this:
dataFile.open("colormonster/colormn1.dat", O_WRITE | O_CREAT | O_TRUNC)
Anybody know what I'm doing wrong?