Create a file transfer program ON PYTHON 3.
Create a local server and client on our machines that will take a single text file from a directory provided by the user and transfer that file over to a client that is requesting the file.
Create 2 new files with the following details:
Client Module
- The client will prompt the user for a text file ".txt" that it wants to receive and the directory where that file is located.
- Using the user input, the client will request a copy of the file from the server
- The client will wait for the file transfer from the server
- The client will store the file in a folder called "Client Folder" which is to be created in the same directory as the py files.
Server Module
- The server will accept incoming connections from a client
- The server will take a filename and directory from the client and send the data over to the client requesting the file