# esp32_lwip_ftpd **Repository Path**: arci/esp32_lwip_ftpd ## Basic Information - **Project Name**: esp32_lwip_ftpd - **Description**: 基于ESP32 esp-idf spiffs freertos lwip 的 ftpd 服务 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-01-27 - **Last Updated**: 2023-01-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # esp32_lwip_ftpd 参考: RT-Thread ftpd.c [lwip-ftpd](https://github.com/toelke/lwip-ftpd) ``` HELP | - List supported commands. USER | - Verify user name. PASS | - Verify password for the user. QUIT | - Quit the session. LIST | - List out contents of a directory. NLST | - List directory contents using a concise format. RETR | - Retrieve a file. STOR | - Store a file. CWD | - Change working directory. XCWD | - Change working directory. CDUP | - Change to parent directory. XCUP | - Change to parent directory. TYPE | - Change the data representation type. PORT | - Change the port number. PWD | - Get the name of current working directory. XPWD | - Get the name of current working directory. STRU | - Change file structure settings. MODE | - Change file transfer mode. ALLO | - Reserver sufficient storage. ACCT | - Identify the user's account. PASV | - Make the server listen on a port for data connection. NOOP | - Do nothing. DELE | - Delete a file MKD | - Make a directory XMKD | - Make a directory RMD | - Remove a directory XRMD | - Remove a directory RNFR | - File to rename RNTO | - a new name for a file that is being renamed SIZE | - get file size in bytes MDTM | - get file modification date and time SYST | - report type of operating system ```