From 0f445eaef03644dbc25bc269e895370289f78912 Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 2 Jun 2022 16:52:22 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=B7=AF=E5=BE=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Service/Common/FileService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IRaCIS.Core.Application/Service/Common/FileService.cs b/IRaCIS.Core.Application/Service/Common/FileService.cs index c5955dfdc..7319d0dee 100644 --- a/IRaCIS.Core.Application/Service/Common/FileService.cs +++ b/IRaCIS.Core.Application/Service/Common/FileService.cs @@ -88,7 +88,7 @@ namespace IRaCIS.Application.Services ZipHelper.CreateZip(tempSavePath, targetZipPath); //返回Zip路径 - return Path.Combine("/UploadFile/", "CV_" + sb.ToString() + ".zip"); + return Path.Combine("/IRaCISData/UploadFile/", "CV_" + sb.ToString() + ".zip"); } /// @@ -133,7 +133,7 @@ namespace IRaCIS.Application.Services string target = Guid.NewGuid().ToString(); string targetPath = Path.Combine(uploadFolderPath, target + ".zip"); ZipHelper.CreateZip(tempSavePath, targetPath); - return Path.Combine("/UploadFile/", target + ".zip"); + return Path.Combine("/IRaCISData/UploadFile/", target + ".zip"); } @@ -183,7 +183,7 @@ namespace IRaCIS.Application.Services string targetPath = Path.Combine(root, target + ".zip"); ZipHelper.CreateZip(packagePath, targetPath); - return Path.Combine("/UploadFile/", target + ".zip"); + return Path.Combine("/IRaCISData/UploadFile/", target + ".zip"); } private static void CopyDirectory(string srcPath, string destPath)