Python实现文件共享

文件共享的方案有很多,FTP,windows共享

在python里非常简单

使用python内置的SimpleHTTPServer

Rony-MBP:~ zuroyu$ python -m SimpleHTTPServer

Serving HTTP on 0.0.0.0 port 8000 ...

如上提示则表示启动成功

通过ip地址来访问,例如:192.168.1.11:8000

SimpleHTTPServer可以自定端口

使用python -m SimpleHTTPServer xxxx

xxxx为自定义端口,不加则默认为8000,也可以使用80端口,这样访问就不需要输入端口号了。