Upload multiple files with Go
Uploading multiple files to Go server can be done easily as well. All you need to do is to parse the multiform data and loop through the files in the array. In this tutorial, we will use Go and HTML to achieve the following :
A simple HTML file upload form to upload multiple files to a server
Go program on server side to receive and process the uploaded files
Verify the uploaded file location and content on server.
1) HTML file upload form to upload file to server - goupload_multiple.html
<html>
<title>Go upload</title>
<body>
<form action="http://localhost.com:8080/receive_multiple" method="post" enctype="multipart/form-data">
<label for="file">Filenames:</label>
<input type="file" name="multiplefiles" id="multiplefiles" multiple>
<input type="submit" name="submit" value="Submit">
</form>
</body>
</html>
NOTE: The input id multiplefiles
will be handled by the MultipartForm function in the code below.
2) Go program on server side to receive the uploaded file - receive_multiple.go
package main
import (
"fmt"
"io"
"net/http"
"os"
)
func uploadHandler(w http.ResponseWriter, r *http.Request) {
err := r.ParseMultipartForm(200000) // grab the multipart form
if err != nil {
fmt.Fprintln(w, err)
return
}
formdata := r.MultipartForm // ok, no problem so far, read the Form data
//get the *fileheaders
files := formdata.File["multiplefiles"] // grab the filenames
for i, _ := range files { // loop through the files one by one
file, err := files[i].Open()
defer file.Close()
if err != nil {
fmt.Fprintln(w, err)
return
}
out, err := os.Create("/tmp/" + files[i].Filename)
defer out.Close()
if err != nil {
fmt.Fprintf(w, "Unable to create the file for writing. Check your write access privilege")
return
}
_, err = io.Copy(out, file) // file not files[i] !
if err != nil {
fmt.Fprintln(w, err)
return
}
fmt.Fprintf(w, "Files uploaded successfully : ")
fmt.Fprintf(w, files[i].Filename+"\n")
}
}
func main() {
http.HandleFunc("/", uploadHandler)
http.ListenAndServe(":8080", nil)
}
the code above uses the ParseMultipartForm method to parse the submitted form data and MultipartForm method to process the POST multiple files the input data.
run receive_multiple.go at the server
> go run receive_multiple.go
point your browser to goupload_multiple.html
and upload couple of files of your choice. The uploaded files will be copied to the /tmp
directory
3) Verify the uploaded file location and content on server.
See if the file is uploaded to the /tmp
with ls
command and cat
to see the content
References:
See also : Golang : Upload file from web browser to server
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.6k Golang : Check if user agent is a robot or crawler example
+7.8k Golang : Append and add item in slice
+11.1k Golang : Byte format example
+36.2k Golang : Display float in 2 decimal points and rounding up or down
+5.4k Javascript : How to refresh page with JQuery ?
+11k Golang : Fix fmt.Scanf() on Windows will scan input twice problem
+8.6k Golang : Gaussian blur on image and camera video feed examples
+5.3k Golang : Detect words using using consecutive letters in a given string
+6.3k Golang : Convert an executable file into []byte example
+11.4k Get form post value in Go
+7.9k Golang : HttpRouter multiplexer routing example
+25k Golang : Daemonizing a simple web server process example