RE: how do i send a file from one computer to another using c++ 04-25-2021, 07:03 PM
#2
This can easily be accomplished some a simple tcp socket, send the file in bytes format over the socket then decode the bytes on the host machine and save them to the corresponding file. (If you are sending a text file save it into a text file on the host machine)