Send text file (*. txt) from SD card to the server

Hi,

I can read can file from server with sketch HTTPClient.

But, I would like to send text file (*. txt) from SD card to the server (WINDOWS) and read it there.

Does anyone have suggest.

Franc

You could use FTP, if your Windows server have this option.

On the Yun you can install ftplib, and send the file with a phyton script

import ftplib
ftp = ftplib.FTP('192.168.62.50', 'user', 'pasw')