summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Plasa <dplasa@gmail.com>2020-05-28 22:13:30 +0200
committerDaniel Plasa <dplasa@gmail.com>2020-05-28 22:13:30 +0200
commit2f974b1efaf8dee0444ef5bc55c14247fae4c99b (patch)
treee0211e8702199ad36290dd2fa12f64842cf473b7
parentadd Client example (diff)
downloadFTPCLientServer-2f974b1efaf8dee0444ef5bc55c14247fae4c99b.tar
FTPCLientServer-2f974b1efaf8dee0444ef5bc55c14247fae4c99b.tar.gz
FTPCLientServer-2f974b1efaf8dee0444ef5bc55c14247fae4c99b.tar.bz2
FTPCLientServer-2f974b1efaf8dee0444ef5bc55c14247fae4c99b.tar.lz
FTPCLientServer-2f974b1efaf8dee0444ef5bc55c14247fae4c99b.tar.xz
FTPCLientServer-2f974b1efaf8dee0444ef5bc55c14247fae4c99b.tar.zst
FTPCLientServer-2f974b1efaf8dee0444ef5bc55c14247fae4c99b.zip
-rw-r--r--README.md75
-rw-r--r--library.json4
2 files changed, 62 insertions, 17 deletions
diff --git a/README.md b/README.md
index cd8d17a..9c98e9b 100644
--- a/README.md
+++ b/README.md
@@ -1,33 +1,39 @@
-# espFTPServer
-Simple FTP Server for the esp8266/esp32 with LittleFS and SPIFFS support.
+# FTPServer and FTPClient
+Simple FTP Server and Client 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.
+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!
+The FTP Client is pretty much straihgt forward. It can upload (put, STOR) a file to a FTP Server or download (get, RETR) a file from a FTP Server. Both ways can be done blocking or non-blocking.
+
## Features
-* Supports active and passive FTP
-* Works with LittleFS and SPIFFS
-* Supports Directories in LittleFS
+* Server supports both active and passive mode
+* Client uses passive mode
+* Client/Server both support LittleFS and SPIFFS
+* Server (fully) supports directories with LittleFS
+* Client supports directories with either filesystem
+ since both FS will just auto-create missing Directories
+ when accessing files.
## Limitations
-* It only allows one ftp control and one data connection at a time. You need to setup Filezilla (or other clients) to respect that, i.e. only allow **1** connection. (In FileZilla go to File/Site Manager then select your site. In Transfer Settings, check "Limit number of simultaneous connections" and set the maximum to 1.)
-* It does not support encryption, so you'll have to disable any form of encryption...
+* Server only allows one ftp control and one data connection at a time. You need to setup Filezilla (or other clients) to respect that, i.e. only allow **1** connection. (In FileZilla go to File/Site Manager then select your site. In Transfer Settings, check "Limit number of simultaneous connections" and set the maximum to 1.)
+* It does not yet support encryption
-## Usage
+## Server Usage
-### Construct an espFTPServer
+### Construct an FTPServer
Select the desired FS via the contructor
```cpp
-#include <espFTPServer.h>
+#include <FTPServer.h>
#include <LittleFS.h>
-FtpServer ftpSrv(LittleFS); // construct with LittleFS
+FTPServer ftpSrv(LittleFS); // construct with LittleFS
// or
-FtpServer ftpSrv(SPIFFS); // construct with SPIFFS if you need to for backward compatibility
+FTPServer ftpSrv(SPIFFS); // construct with SPIFFS if you need to for backward compatibility
```
-### Configure username/password
+### Set username/password
```cpp
ftpSrv.begin("username", "password");
```
@@ -37,6 +43,45 @@ ftpSrv.begin("username", "password");
ftpSrv.handleFTP(); // place this in e.g. loop()
```
+## Client Usage
+
+### Construct an FTPClient
+Select the desired FS via the contructor
+```cpp
+#include <FTPClient.h>
+#include <LittleFS.h>
+
+FTPClient ftpClient(LittleFS); // construct with LittleFS
+// or
+FTPClient ftpClient(SPIFFS); // construct with SPIFFS if you need to for backward compatibility
+```
+
+### Provide username, password, server, port...
+```cpp
+// struct ServerInfo
+// {
+// String login;
+// String password;
+// String servername;
+// uint16_t port;
+// bool authTLS = false;
+// bool validateCA = false;
+// };
+
+ServerInfo ftpServerInfo ("username", "password", "server_name_or_ip", 21);
+ftpClient.begin(ftpServerInfo);
+```
+
+### Transfer a file
+```cpp
+ftpClient.transfer("local_file_path", "remote_file_path", FTPClient::FTP_GET); // get a file blocking
+ftpClient.transfer("local_file_path", "remote_file_path", FTPClient::FTP_PUT_NONBLOCKING); // put a file non-blocking
+```
+### Handle non-blocking transfers by calling frequently
+```cpp
+ftpClient.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
+* I forked the Server from https://github.com/nailbuster/esp8266FTPServer which itself was forked from: https://github.com/gallegojm/Arduino-Ftp-Server/tree/master/FtpServer
+* Inspiration for the Client was taken from https://github.com/esp8266/Arduino/issues/1183#issuecomment-634556135
diff --git a/library.json b/library.json
index 5f4944f..eb03884 100644
--- a/library.json
+++ b/library.json
@@ -1,6 +1,6 @@
{
- "name": "espFTPServer",
- "description": "Simple FTP Server for using SPIFFS or LittleFS",
+ "name": "FTP",
+ "description": "Simple FTP Server and Client for using SPIFFS or LittleFS",
"keywords": "esp8266, ftp, spiffs, littlefs",
"authors":
{