Golang HTTP FileServer 簡介
Golang 內建提供 http.FileServer ,可以方便地透過 HTTP 存取檔案系統(file system),例如以下程式碼執行之後,就可以透過瀏覽器打開網址 http://localhost:8080
瀏覽 /usr/share/doc
資料夾內的檔案。
package main
import (
"net/http"
)
func main() {
http.ListenAndServe(":8080", http.FileServer(http.Dir("/usr/share/doc")))
}
Posted on Jun 4, 2018 in Go 程式設計 - 初階 by Amo Chen ‐ 2 min read