This project gives an example of a file transfer protocol client server model.
Austin Suarez: amsuarez@csu.fullerton.edu
Blake Molina: molinab297@csu.fullerton.edu
Paul Miller: 138paulmiller@csu.fullerton.edu
Hassan Hamod: hhamod@csu.fullerton.edu
Curtis Laudenslayer: claudenslayer@csu.fullerton.edu
Python 3.6.4 was used for the implementation of this project
Open two terminal windows, one for client and one for server.
In one window, type python3 testClient.py <hostname> <port number>
In the other window, type python3 testServer.py <port number>
ftp> get <file name> (downloads file <file name> from the server)
ftp> put <filename> (uploads file <file name> to the server)
ftp> ls (lists files on the server)
ftp> lls (lists files on the client)
ftp> quit (disconnects from the server and exits)