From e81ca048ef4e9345e904b74ffffd3e8413d18a7e Mon Sep 17 00:00:00 2001 From: ningshuxia <ningshuxia0927@outlook.com> Date: 星期一, 12 十二月 2022 15:58:51 +0800 Subject: [PATCH] 报表生成路径写死 --- Application/IStation.Application.OpenApi/test/report/Report_ShysController.cs | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/Application/IStation.Application.OpenApi/test/report/Report_ShysController.cs b/Application/IStation.Application.OpenApi/test/report/Report_ShysController.cs index a9cb443..03738a0 100644 --- a/Application/IStation.Application.OpenApi/test/report/Report_ShysController.cs +++ b/Application/IStation.Application.OpenApi/test/report/Report_ShysController.cs @@ -107,7 +107,8 @@ if (!Directory.Exists(ReportPath)) Directory.CreateDirectory(ReportPath); - var filePath = Path.Combine(ReportPath, "UserLoginLogReport" + ".xml"); + //var filePath = Path.Combine(ReportPath, "UserLoginLogReport" + ".xml"); + var filePath = "C:\\FineReport\\tomcat-win64\\webapps\\webroot\\WEB-INF\\reportlets\\file\\UserLoginLogReport.xml"; if (File.Exists(filePath)) { File.Delete(filePath); -- Gitblit v1.9.3