I used your instructions to sent an image file to a client in html context, but it was too slow.
while(file.available()) client.write(file.read());
I guess that the problem is that the transmition was byte to byte. I wonder if there is a way to transfer a block of bytes.
Thank you
