SimpleFTPServer icon indicating copy to clipboard operation
SimpleFTPServer copied to clipboard

A simple FTP server for Arduino, ArduinoSAMD WiFiNINA, esp8266, esp32, stm32 and Raspberry Pi Pico W

Results 16 SimpleFTPServer issues
Sort by recently updated
recently updated
newest added
trafficstars

[Line to line in FtpServer.cpp](https://github.com/xreef/SimpleFTPServer/blob/b3cc2c9c81de84c40c2028ba66eb4e99fc453968/FtpServer.cpp#L1635) `strcpy(dtStr, "19700101000000"); `

enhancement

LittleFS has real directories instead of SPIFFS "paths with slashes", see (https://github.com/littlefs-project/littlefs/issues/353#issuecomment-566675488) > There is no limit on the path length other then the RAM and storage you have on...

Quick and dirty (but fully within LittleFS specs) fix for #69

Hello, When I choose STORAGE_SDFAT2, I'm getting this compilation error: Compiling .pio\build\esp12e\lib0ed\ESP8266WiFi\WiFiServerSecureBearSSL.cpp.o src\FTPServer.cpp: In member function 'bool FtpServer::openFile(char*, int)': src\FTPServer.cpp:2323:50: error: no match for 'operator=' (operand types are 'FsFile' and...

https://github.com/xreef/SimpleFTPServer/blob/master/FtpServer.cpp#L1935C8-L1935C20 In the following code segment: ``` int8_t FtpServer::readChar() { int8_t rc = -1; if( client.available()) { char c = client.read(); DEBUG_PRINT("-"); DEBUG_PRINT( c ); if( c == '\\' )...

Unable to see the SD directory in Filezilla