Go 文件服务器

Go 文件服务器

package main

import "net/http"

func main()  {
	h := http.FileServer(http.Dir("."))
	http.ListenAndServe(":8001", h)
}

访问地址:

http://localhost:8001

发布了420 篇原创文章 · 获赞 143 · 访问量 89万+

猜你喜欢

转载自blog.csdn.net/jeikerxiao/article/details/102879964