├── .gitignore ├── .media ├── activeUI.png ├── clientUI.png └── serve-output.png ├── README.md ├── __pycache__ ├── clientInterface.cpython-36.pyc ├── clientInterface.cpython-38.pyc ├── ftpClient.cpython-36.pyc └── ftpClient.cpython-38.pyc ├── clientGUI.py ├── clientInterface.py ├── clientInterface.ui ├── ftpClient.py ├── ftpServer.py └── users.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/.gitignore -------------------------------------------------------------------------------- /.media/activeUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/.media/activeUI.png -------------------------------------------------------------------------------- /.media/clientUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/.media/clientUI.png -------------------------------------------------------------------------------- /.media/serve-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/.media/serve-output.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/clientInterface.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/__pycache__/clientInterface.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/clientInterface.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/__pycache__/clientInterface.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/ftpClient.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/__pycache__/ftpClient.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/ftpClient.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/__pycache__/ftpClient.cpython-38.pyc -------------------------------------------------------------------------------- /clientGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/clientGUI.py -------------------------------------------------------------------------------- /clientInterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/clientInterface.py -------------------------------------------------------------------------------- /clientInterface.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/clientInterface.ui -------------------------------------------------------------------------------- /ftpClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/ftpClient.py -------------------------------------------------------------------------------- /ftpServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/ftpServer.py -------------------------------------------------------------------------------- /users.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sephoro/FTP-Application/HEAD/users.txt --------------------------------------------------------------------------------