I wanted to make an application that can allow sharing of folders between two computers connected to the same local network. I am using python to communicate between a client and server. Can anyone tell me how can i transfer a file across the network?
Asked
Active
Viewed 1,057 times
-3
-
3"I'm making an application. Can someone make it for me?" – Jonathon Reinhart Nov 08 '15 at 23:09
1 Answers
2
A very easy solution for filesharing would be to start a python webserver in the directory you'd like to share:
python -m SimpleHTTPServer 8000
But if you want "real" folder sharing, look for windows shares, samba, nfs or something alike.

Craig
- 165
- 6