SdFat, getting filename, ext, etc.

I have been trying to read the filenames on an SD card using SdFat and I give up. The only thing I can find is functions to print names, dates, etc out the serial port. Nothing to actually read to use in the app.

I found one that used

char name[15];

SdFile file;

file.fileName(name);

But, I get a no member error.

Another link said use file.name(), but same result.

So, how do I read filenames and other info about a file with SdFat?

tj

Solved, I kept looking in the SdFat source code and found it in FatFile class.

tj