Hello everyone I'm doing a school project and I need to make a TCP Server/Client to transfer files from the client to the Server using the TCP protocol.
I already know how to make a TCP server and client sending messages and objects.
What I need is:
- The user selects a file from a predefined directory
- Then he can type send-file.ext to send the file to the server The server needs to
- get the file from the Client
- Save the file in a predefined directory
How do i go about this? If I fetch a file from the users hard drive, how do i make that file into to bytes and then send to the server. How does the server know it is a file and save the file with its original name?
Thanx