EasyFileTransfer icon indicating copy to clipboard operation
EasyFileTransfer copied to clipboard

An easy way to transfer file with any size on network with tcp protocol.

Results 2 EasyFileTransfer issues
Sort by recently updated
recently updated
newest added

Updated EftServer method (=> EftServer.cs) public EftServer(string SaveTo, int Port) { this.SaveTo = SaveTo; this.Port = Port; obj_server = new TcpListener(IPAddress.Any, Port); } => public EftServer(IPAddress ip, string SaveTo, int...

Can you implement support for two or more clients? For example, one client has the name **John** and the other has **Sam**, and John simply enters the name of the...