Code Monkey home page Code Monkey logo

Comments (8)

fa1ke5 avatar fa1ke5 commented on June 27, 2024

Hi Barry, as i know browser ftp client functionality dont support write on ftp by drag and drop function. Browsers ftp client is readonly.

from esp32_ftpserver_sd_mmc.

fa1ke5 avatar fa1ke5 commented on June 27, 2024

if you create folder in ftp cliet server create folder on sd too, you can see mkdir instruction in this code:
if( SD_MMC.mkdir( path )){
client.println( "257 "" + String(parameters) + "" created");
}
for stable work in wincsp try setup connection parameters "passive mode" e.t.c

from esp32_ftpserver_sd_mmc.

fa1ke5 avatar fa1ke5 commented on June 27, 2024

or try totalcomander ftp client....

from esp32_ftpserver_sd_mmc.

BBBits avatar BBBits commented on June 27, 2024

Hi,
the problem is actually with the response format of the MLSD command.
perhaps you haven't experienced the problem because your clients only use the LIST command
the correct response was actually commented out so I changed it and all is ok now.
// data.println(fn);
data.println( "Type=dir;Size=" + fs + ";"+"modify=20000101000000;" +" " + fn);
} else {
// data.println( fs + " " + fn);
data.println( "Type=file;Size=" + fs + ";"+"modify=20000101160656;" +" " + fn);

Winscp now displays correct dir structure
winscp_MLSD_Correct

from esp32_ftpserver_sd_mmc.

jruizcoll avatar jruizcoll commented on June 27, 2024

Thanks BBBits for pointing this issue. Your solution worked for me on OLIMEX ESP32-PoE and SD card, using FileZilla FTP client Passive mode

from esp32_ftpserver_sd_mmc.

Related Issues (3)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.