summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md19
1 files changed, 12 insertions, 7 deletions
diff --git a/README.md b/README.md
index dd9bc01..bee7d6e 100644
--- a/README.md
+++ b/README.md
@@ -1,20 +1,25 @@
# esp8266FTPServer
Simple FTP Server for using esp8266/esp32 SPIFFs
+I've modified a FTP server from arduino/wifi shield to work with esp8266/esp32
-Now should support esp32!!!
+It should support esp32 and is also using LittleFS as SPIFFS has become deprecated.
+Use
+```cpp
+#define esp8266FTPServer_SPIFFS
+#include <esp8266FTPServer.h>
+```
+to switch back to SPIFFS, if you need to.
-I've modified a FTP server from arduino/wifi shield to work with esp8266....
+This allows you to FTP into your esp8266/esp32 and access/modify the LittleFS/SPIFFS folder/data...it only allows one ftp connection at a time....very simple for now...
-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 (upload/download/rename/delete). There's no create/modify directory support in SPIFFS but in LittleFS there is!
-I've tested it with Filezilla, and the basics work (upload/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..
+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 your site.
In Transfer Settings, check "Limit number of simultaneous connections" and set the maximum to 1
-only supports Passive ftp mode....
+It also only supports Passive ftp mode.
It does NOT support any encryption, so you'll have to disable any form of encryption...