美文网首页
python开启局域网共享文件-8080端口

python开启局域网共享文件-8080端口

作者: Cookie_hunter | 来源:发表于2018-04-24 18:02 被阅读0次

    很简单的小玩意

    代码

    import os
    #可指定路径
    # os.chdir("F:/")
    os.system('python -m http.server 8080')
    
    

    效果

    运行上部分代码后,在浏览器输入http://localhost:8080,或本机ip+:8080(如:192.167.33.155:8080)
    同局域网下其它主机搜索发起机ip+:8080

    相关文章

      网友评论

          本文标题:python开启局域网共享文件-8080端口

          本文链接:https://www.haomeiwen.com/subject/crojlftx.html