Read a specific offset from an fat16 SD card file?

I would like to know if it would be possible, to say, to read from 0x53000 to 0x53422 of a file called "test.bin" that is in a fat16 formatted SD card.

If so, how?

BR

think you're looking for seek(position) - see libraries/SD/file.cpp of your arduno distri.

boolean File::seek(uint32_t pos) {
  return SD.file.seekSet(pos);
}

Thanks robtillaart, will check it right now and post results!

BR

Worked 100%

Thanks!!!

Welcome,
BTW seek() can also be used for other ranges :wink: