diff options
author | Daniel Plasa <dplasa@gmail.com> | 2020-05-26 04:59:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 04:59:27 +0200 |
commit | 6978ba485c33a5704aef990a8d8e57f6fd1c5f4a (patch) | |
tree | ba9e1d44214aded6d8493fb28f4ac6104b6b53c3 | |
parent | cleanup readme, undecided on the transfer buffer, work in progress on that (diff) | |
download | FTPCLientServer-6978ba485c33a5704aef990a8d8e57f6fd1c5f4a.tar FTPCLientServer-6978ba485c33a5704aef990a8d8e57f6fd1c5f4a.tar.gz FTPCLientServer-6978ba485c33a5704aef990a8d8e57f6fd1c5f4a.tar.bz2 FTPCLientServer-6978ba485c33a5704aef990a8d8e57f6fd1c5f4a.tar.lz FTPCLientServer-6978ba485c33a5704aef990a8d8e57f6fd1c5f4a.tar.xz FTPCLientServer-6978ba485c33a5704aef990a8d8e57f6fd1c5f4a.tar.zst FTPCLientServer-6978ba485c33a5704aef990a8d8e57f6fd1c5f4a.zip |
-rw-r--r-- | README.md | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ # espFTPServer -Simple FTP Server for using esp8266/esp32 +Simple FTP Server for the esp8266/esp32 with LittleFS and SPIFFS support. + I've modified a FTP server from arduino/wifi shield to work with the esp826. It should also work on the esp32. LittleFS with directory handling is supported since SPIFFS has been marked deprecated. This allows you to FTP into your esp8266/esp32 and access/modify the LittleFS/SPIFFS folder/data. I've tested it with Filezilla, and it works (upload/download/rename/delete). There's no create/modify directory support in SPIFFS but in LittleFS there is! @@ -38,4 +39,4 @@ ftpServer.handleFtp(); // place this in e.g. loop() ## Notes -I forked from https://github.com/nailbuster/esp8266FTPServer which itself was forked from: https://github.com/gallegojm/Arduino-Ftp-Server/tree/master/FtpServer
\ No newline at end of file +I forked from https://github.com/nailbuster/esp8266FTPServer which itself was forked from: https://github.com/gallegojm/Arduino-Ftp-Server/tree/master/FtpServer |