# FtpTiny-Micropython **Repository Path**: lyleyes/FtpTiny-Micropython ## Basic Information - **Project Name**: FtpTiny-Micropython - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-11 - **Last Updated**: 2024-08-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FtpTiny ## Summary A simple ftp server that runs in Micropython in a thread. To use this with FileZilla, set it to PASV mode and maximum of 1 connection at a time. Modified from https://github.com/cpopp/MicroFTPServer/tree/master/uftp ## Usage To use this, import the library (ftptiny), create one, then use start and stop. ```python import ftptiny ftp = ftptiny.FtpTiny() # create one ftp.start() # start an ftp thread # do whatever you want to do here ftp.stop() # stop the ftp thread ``` ## Supported This supports: * `Folders`: create, delete, rename * `Files`: send, receive, delete, rename * `Path`: change directory, list contents