我正在处理多部分/表单数据文件上传,我的后端使用 Goio.Copy将表单数据复制到本地文件。
func SaveFileHandler() error {
...
file := form.File["file_uploaded"] // file uploaded in form
src, _ := file.Open()
// here the original file size is 35540353 in my case,
// which is a video/mp4 file
fmt.Println(file.Size)
// create a local file with same filename
dst, _ := os.Create(file.Filename)
// save it
_, err = io.Copy(dst, src)
// err is nil
fmt.Println(err)
stat, _ := dst.Stat()
// then the local file size differs from the original updated one. Why?
// local file size becomes 35537281 (original one is 35540353)
fmt.Println(stat.Size())
// meanwhile I can't open the local video/mp4 file,
// which seems to be broken due to losing data from `io.Copy`
...
怎么可能?是否有任何最大缓冲区大小io.Copy?或者在这种情况下文件mime类型是否重要?
我尝试使用 png 和 txt 文件,并且都按预期工作。
Go 版本是go1.12.6 linux/amd64
MYYA
相关分类