-3

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?

Sagar Ghai
  • 71
  • 1
  • 6

1 Answers1

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