From f7b16b2d3c9113f93c4e707b94fb1a735aa2c911 Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周二, 27 8月 2024 11:24:27 +0800 Subject: [PATCH] //修复下 op35 同一个件 下线时间跟下一个上线时间一模一样的问题 【Editby shaocx,2024-08-27】 --- DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_BusinessLogical/Utils/LogTextHelper.cs | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_BusinessLogical/Utils/LogTextHelper.cs b/DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_BusinessLogical/Utils/LogTextHelper.cs index 3db6aee..8023044 100644 --- a/DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_BusinessLogical/Utils/LogTextHelper.cs +++ b/DataCapture/iWare_SCADA_DataCapture/iWare_SCADA_BusinessLogical/Utils/LogTextHelper.cs @@ -13,6 +13,7 @@ /// </summary> public static void BatchDeleteLog() { + List<string> deleteFolder = new System.Collections.Generic.List<string>(); string folderPath = @"d:\\Log"; FolderHelper.ListDirectory(folderPath, 0, ref deleteFolder); @@ -24,6 +25,21 @@ } /// <summary> + /// 鎵规鍒犻櫎鏃ュ織鏂囦欢 + /// </summary> + public static void BatchDeleteLog(string folderPath, int days) + { + + List<string> deleteFolder = new System.Collections.Generic.List<string>(); + FolderHelper.ListDirectory(folderPath, 0, ref deleteFolder); + + foreach (var item in deleteFolder) + { + FileHelper.DeleteOldFiles(item, days);//鍒犻櫎涓�涓湀鐨勬暟鎹� + } + } + + /// <summary> /// 寰�鏃ュ織閲岃拷鍔犲唴瀹� /// </summary> /// <param name="folder">鏃ュ織鐩綍</param> -- Gitblit v1.9.3