write a specific offset to an fat16 SD card file?

can you give me an example?

long offset = 0x1034; // Define where to go to
File myFile = SD.open("BigFile.txt");
if(myFIle)
{
   if(myFile.seek(offset))
   {
      // Got to the desired location
   }
   myFile.close();
}