Try ioutil.ReadAll
In your case do;
byteContainer, err := ioutil.ReadAll(fileContent) // you may want to handle the error
fmt.Printf("size:%d", len(byteContainer))
You may also want to see this example from multipart
package docs, https://play.golang.org/p/084tWn65-d