# QFtpServer **Repository Path**: gmind31/QFtpServer ## Basic Information - **Project Name**: QFtpServer - **Description**: QFtpServer - an FTP server written in Qt - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 3 - **Created**: 2017-11-29 - **Last Updated**: 2021-12-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README QFtpServer - an FTP server written in Qt ---------------------------------------- ### Description QFtpServer is an event-driven server which is written entirely in Qt. It is non-blocking and supports multiple connections. This project started because I couldn't find a free FTP server for my Symbian phone so I decided to try and make one of my own. I've tested it against Filezilla, Chrome, Firefox, Safari, Windows Explorer, and others. ### Features It supports: * Active connections (PORT command). * Passive connections (PASV command). * Random access for files (APPE, RETR), so stopped uploads and downloads can be continued. * Secure FTP, also known as FTP-ES which uses SSL/TLS sockets. It doesn't support: * IPv6. * FTPS (this standard is obsolete and FTP-ES should be used instead). * Multiple user accounts. ### Example usage: server = new FtpServer(this, "/ftp/root/path", 21, "MyUserName", "MyPassword", false, false);