Best way to transfer stored files via WiFi?

Hi,

I am using my Arduino to log data from a number of I2C devices and storing the information on an SD card. Is there a way to transfer that data on a schedule via WiFi to some central repository that I can access from my computer? I have looked into FTP transfer a bit, but seem to be having trouble since my FTP server requires TLS. Are there other methods to make this possible?

Thanks!

My suggestion is to look a bit further into FTP it is very good at transferring data. Since TLS is the (Transport Layer Security) it is is the encryption protocol that protects Internet communications. If you are not worried about somebody getting the data try FTP without that layer to start.

Thanks. Is it possible to connect to FTP with TLS using Arduino? I have tried the sketch here: Arduino Playground - FTP . But after I am connected, I get an error and haven't had success navigating around that.