目录
隐藏
文件服务器(python)
python有个自带的http版的文件服务器,可以把整个磁盘上的目录都共享出来。
- python2
python -m SimpleHTTPServer
- python3
python -m http.server
python有个自带的http版的文件服务器,可以把整个磁盘上的目录都共享出来。
python -m SimpleHTTPServer
python -m http.server