From 52a4fc0505ad96cde09c1c7af7697ad7271831f4 Mon Sep 17 00:00:00 2001 From: liuxiaolong <736321739@qq.com> Date: 星期四, 19 十二月 2019 10:33:05 +0800 Subject: [PATCH] fix --- service/SysService.go | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/service/SysService.go b/service/SysService.go index 809693f..3cd5478 100644 --- a/service/SysService.go +++ b/service/SysService.go @@ -1,4 +1,5 @@ package service + import ( "basic.com/valib/logger.git" "bufio" @@ -7,7 +8,6 @@ "mime/multipart" "os" "os/exec" - "strconv" "strings" "webserver/extend/config" "webserver/extend/util" @@ -66,7 +66,8 @@ return true } //鍒ゆ柇鍒嗗潡鏂囦欢鏄惁瀛樺湪 - chunkFilePath := fileTmpPath+"/"+arg.Identifier+"_"+strconv.Itoa(arg.ChunkNumber) + chunkAlignNum := util.FormatNum(arg.TotalChunks, arg.ChunkNumber) + chunkFilePath := fileTmpPath+"/"+arg.Identifier+"_"+chunkAlignNum if !util.Exists(chunkFilePath) { return false } @@ -110,7 +111,8 @@ return false } } - fileSavePath := fileTmpPath+"/"+MD5Str+"_"+strconv.Itoa(arg.ChunkNumber) + chunkAlignNum := util.FormatNum(arg.TotalChunks, arg.ChunkNumber) + fileSavePath := fileTmpPath+"/"+MD5Str+"_"+chunkAlignNum if util.Exists(fileSavePath) { rmErr := os.Remove(fileSavePath) if rmErr != nil { @@ -148,6 +150,8 @@ if !updatePatch(arg.Identifier, subfix) { return false } + } else { + logger.Debug("not a valid zip file,path:",fileTmpPath+subfix) } } } -- Gitblit v1.8.0