From c7acb51c3ace14e509704f453adc58b9eb6613a8 Mon Sep 17 00:00:00 2001
From: liuying <1427574514@qq.com>
Date: 周三, 16 10月 2024 16:23:28 +0800
Subject: [PATCH] 细节

---
 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