- 作者简介:花神庙码农(专注于Linux、WLAN、TCP/IP、Python等技术方向)
- 博客主页:花神庙码农 ,地址:https://blog.csdn.net/qxhgd
- 系列专栏:Python应用
- 如觉得博主文章写的不错或对你有所帮助的话,还望大家三连支持一下呀!!! 关注✨、点赞、收藏、评论。
- 如需转载请参考转载须知!!
#python2:
python -m SimpleHTTPServer #使用默认端口
# python3:
python -m http.server #使用默认8000端口
python -m http.server 9000 #使用9000端口
python -m http.server --bind 127.0.0.1 #python3.4以后,支持绑定特定IP
python -m http.server --directory D: #可指定目录,如不指定,则使用当前目录
pip install pyftpdlib #安装ftpdlib库
python -m pyftpdlib -p 21 #启动ftp服务,指定21端口;如不指定,默认2121端口
-i 指定IP地址(默认为本机的IP地址)
-p 指定端口(默认为2121)
-w 写权限(默认为只读)
-d 指定目录 (默认为当前目录)
-u 指定用户名登录
-P 设置登录密码
python -m pyftpdlib -p 21
如本文对你有些许帮助,欢迎大佬加关注、评论、点赞,有关必回关