Single file
References issue #774 and detail example code.
import (  "fmt"  "log"  "net/http"
  "github.com/gin-gonic/gin")
func main() {  router := gin.Default()  // Set a lower memory limit for multipart forms (default is 32 MiB)  router.MaxMultipartMemory = 8 << 20 // 8 MiB  router.POST("/upload", func(c *gin.Context) {    // single file    file, _ := c.FormFile("file")    log.Println(file.Filename)
    // Upload the file to specific dst.    c.SaveUploadedFile(file, "./files/"+file.Filename)
    c.String(http.StatusOK, fmt.Sprintf("'%s' uploaded!", file.Filename))  })  router.Run(":8080")}How to curl:
curl -X POST http://localhost:8080/upload \  -F "file=@/Users/appleboy/test.zip" \  -H "Content-Type: multipart/form-data"