Transfer file off sd card

Hey folks,
I am using a TTL jpeg camera to save images onto sd card with aduino uno.
Can anyone help me with code to then read the image file from the sd card and send it over a bluetooth serial link, where another arduino will receive it and save it to its sd card?
Thanks

Can anyone help me with code to then read the image file from the sd card

File::open() and File::read().

and send it over a bluetooth serial

Serial.write().

Pauls is kinda right, without your code, we can't offer more then this