Filee is a high-performance, cross-platform, and open-source Local Area Network (LAN) file sharing tool licensed under the GPLv3 license.
YouTube: https://youtu.be/iwnmr1nOero
The broadcast module is served as notifying others of the devices’ presence on the network so that the users don’t have to enter the IP address.
- The
Broadcastersends UDP broadcast messages on port 6816. - The
BroadcastReceiverlistens to messages on the UDP port 6816. - The
Broadcasterwill notify theOnlineDeviceModelin themodelsmodule to update the list accordingly.
The transfer module is responsible for transferring files between devices.
- The
FileSendersends files. FileSenderis encapsulated byFileSenderSessionto address issues like errors that would occur in a mobile environment.- The
FileReceiverreceives files. - The
FileReceiveris created byFileReceiveServer’s master socket upon new connections. - Both the
FileSenderandFileReceiverare inherited fromFileTransferPeer. - The
FileTransferPeercontains the standards of the file transfer protocol- The definition of the header
- The structure of TCP packet’s payload
- Provides a unified interface for the sender and receiver to send and receive packets
The model module contains model codes used in Qt’s Model-View system.
The utils module contains utility functions used throughout the application.
- The
AndroidUtilsclass contains functions specific to Android.- Parse the correct file name
- Reading the file extension from the file signature (binary)
- The
GuiControllerhandles the interaction between the frontend and the backend.


