在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
func getCurrentPath() string { s, err := exec.LookPath(os.Args[0]) checkErr(err) i := strings.LastIndex(s, "\\") path := string(s[0 : i+1]) return path } func checkErr(err error) { if err != nil { panic(err) } } 法二: apath, _:=os.Getwd() fmt.Println(apath) fp := http.FileServer(http.Dir(apath+"/pdfjs/"))
|
请发表评论