Chào mọi người. mình đang tìm hiểu về golang cụ thể echo framework.
Mình tìm hiểu đến phần download file thì gặp vấn đề.
Mình có log ra file thì file có tồn tại, nhưng trong message log thì báo not found
code
func Download(c echo.Context) error {
agr := []string{"/home/trunglv/mp3/file/"}
list,err := exec.Command("ls",agr... ).Output()
if err != nil {
log.Printf("err %v",err)
}
log.Printf("ssssssss %v","/home/trunglv/file/"+string(list))
//return c.String(http.StatusOK, string(list))
return c.Attachment("/home/trunglv/mp3/file/"+string(list), "test.txt")
}
Doc trang chủ
nhờ mọi giúp đỡ mình case này. Mình cám ơn.