diff --git a/fssc/fssc b/fssc/fssc index 5cebb19..abbe9de 100644 Binary files a/fssc/fssc and b/fssc/fssc differ diff --git a/fssc/internal/handler/handler.go b/fssc/internal/handler/handler.go index 64e1b81..d567dfb 100644 --- a/fssc/internal/handler/handler.go +++ b/fssc/internal/handler/handler.go @@ -118,7 +118,8 @@ func Supfile(w http.ResponseWriter, r *http.Request) { bpath := util.Base64dec(sbpath[0]) bfile := util.Base64dec(sbfile[0]) // 替换 反斜杠 - bbpath := strings.Replace(bpath, "/", "\\", -1) + bbpath := strings.Replace(bpath, "\\", "/", -1) + //replacedPath := strings.ReplaceAll(path, "\\", "/") // 拼装, 文件的实际地址 ziprl := filepath.Join(config.G.FilePath, "/", bbpath, "/", bfile)