-->
Page 1 of 3

Simple FTP Server for SPIFFS

PostPosted: Thu Jan 14, 2016 6:47 pm
by NailBuster
I've modified a FTP server from arduino/wifi shield to work with esp8266....

This allows you to FTP into your esp8266 and access/modify the spiffs folder/data...it only allows one ftp connection at a time....very simple for now...

I've tested it with Filezilla, and the basics work (update/download/rename/delete). There's no create/modify directory support(no directory support in SPIFFS yet).

You need to setup Filezilla(or other client) to only allow 1 connection..
To force FileZilla to use the primary connection for data transfers:
Go to File/Site Manager then select you site.
In Transfer Settings, check "Limit number of simultaneous connections" and set the maximum to 1


feel free to try it out (sample provided)... https://github.com/nailbuster/esp8266FTPServer

this is the original project on github I worked from: https://github.com/gallegojm/Arduino-Ft ... /FtpServer

Re: Simple FTP Server for SPIFFS

PostPosted: Thu Jan 14, 2016 8:17 pm
by lino.estevao
Oh my! I've been looking for a better way to upload files to my esp network. nothing better than FTP :D

Re: Simple FTP Server for SPIFFS

PostPosted: Thu Feb 04, 2016 11:45 am
by NailBuster
I've now put up the project on github: https://github.com/nailbuster/esp8266FTPServer

The zip file from original post will be removed....

Re: Simple FTP Server for SPIFFS

PostPosted: Wed Feb 17, 2016 3:16 am
by BeeGee
Nice library, simple implementation and setup. Got it to work within only a few minutes.