How to send file using FTP #12649
Replies: 4 comments 7 replies
-
There is a ftp library which I tested some time ago and found it working well. https://github.com/SpotlightKid/micropython-ftplib |
Beta Was this translation helpful? Give feedback.
-
I have been trying the ftplib library with a Pico W and it's working 'out the box' for me but only to connect to an anonymous FTP server. Attempting to connect using a named account only failed with a 'login details incorrect' type error so I was talking to the FTP server. The only imported module used by ftplib library is usocket so there really should be no issue connecting with any network capable MCU. A more radical solution would be to set up your Pico W as an FTP server. See https://github.com/cpopp/MicroFTPServer. Again this worked on a Pico W without any modifications. Just connect to a network and import uftp. It's again only an anonymous FTP server but I can connect to it using FileZilla and from another MCU using ftplib. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hy everyone!
I have connected my Raspberry Pico W over Wifi with an AP connected to a company server.
Since I have been enabled to use only the FPT protocol, how I can transfer my sensor data storage ( in txt format) to a shared folder of such server?
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions