• 大小: 0.51M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2024-05-01
  • 语言: C#
  • 标签: 日志  

资源简介

日志文件清理

资源截图

代码片段和文件信息

/******************************************************************************
 * Project name   : DVMS
 * Block name     : BatchCommon
 * Author         : FUJITSU)
 * Create Date    : 2020/02/24
 * 
 * Class Name     : CommonClass
 * Class Summary  : 设置相关参数类
 * 
 * History        : 2020.02.24 FUJITSU)
 *
 * (C)2020 FUJITSU CORPORATION. All Rights Reserved.
 *****************************************************************************/

using System;
using System.Threading;

namespace BatchCommon
{
    #region CommonClass

    public class CommonClass
    {
        private const string xmlFile = “DVMSDEL.xml“;
        #region 变量声明

        //实例化
        FileClass fileClass = new FileClass();

        #endregion 变量声明

        #region 前处理过程
        /// 
        ///前处理过程,正确返回ture,错误返falseMSGID
        /// 


        public bool CommonstartProc(String jobID)
        {
            try
            {
                // 建立Message字典
                MessageClass.InitMsgInfo(xmlFile);


                // 两次运行检查,是则结束JOB
                Mutex mt = new Mutex(true jobID);
                if (!mt.WaitOne(0 false))
                {
                    return false;
                }

                return true;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }

        #endregion 前处理过程

        #region 结束处理过程
        // 
        // 前处理过程,正确返回ture,错误返falseMSGID
        // 
  

        public void CommonEndProc(int retCode)
        {
            try
            {
                //fileClass.CreateRetFile(retCode);
                // 清空字典
                MessageClass.ClearMsgInfo();
                return;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
        #endregion 结束处理过程
    }
    #endregion CommonClass
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-09-19 14:00  清除日志文件数据库数据\
     目录           0  2020-09-19 14:00  清除日志文件数据库数据\BatchCommon\
     文件        3018  2020-06-17 11:54  清除日志文件数据库数据\BatchCommon\BatchCommon.csproj
     文件         231  2020-06-17 12:01  清除日志文件数据库数据\BatchCommon\BatchCommon.csproj.user
     目录           0  2020-09-19 14:00  清除日志文件数据库数据\BatchCommon\bin\
     目录           0  2020-09-19 14:00  清除日志文件数据库数据\BatchCommon\bin\Debug\
     文件       22016  2020-06-19 14:37  清除日志文件数据库数据\BatchCommon\bin\Debug\BatchCommon.dll
     文件       65024  2020-06-19 14:37  清除日志文件数据库数据\BatchCommon\bin\Debug\BatchCommon.pdb
     目录           0  2020-09-19 14:00  清除日志文件数据库数据\BatchCommon\bin\Release\
     文件       20992  2020-06-17 11:57  清除日志文件数据库数据\BatchCommon\bin\Release\BatchCommon.dll
     文件       56832  2020-06-17 11:57  清除日志文件数据库数据\BatchCommon\bin\Release\BatchCommon.pdb
     文件        2062  2020-06-17 15:32  清除日志文件数据库数据\BatchCommon\CommonClass.cs
     文件        3865  2020-06-19 14:33  清除日志文件数据库数据\BatchCommon\DBAccess.cs
     文件         164  2020-09-19 14:01  清除日志文件数据库数据\BatchCommon\DbTable.cs
     文件        1357  2020-09-19 14:01  清除日志文件数据库数据\BatchCommon\DelFile.cs
     文件        1291  2020-09-19 14:01  清除日志文件数据库数据\BatchCommon\DelTable.cs
     文件        8687  2020-06-03 10:31  清除日志文件数据库数据\BatchCommon\FileClass.cs
     文件         203  2020-09-19 14:02  清除日志文件数据库数据\BatchCommon\Files.cs
     文件       13712  2020-06-03 10:31  清除日志文件数据库数据\BatchCommon\FormateClass.cs
     文件        5767  2020-06-03 10:31  清除日志文件数据库数据\BatchCommon\FtpClass.cs
     文件        3112  2020-06-03 10:31  清除日志文件数据库数据\BatchCommon\GetIniClass.cs
     文件        5216  2020-06-03 10:31  清除日志文件数据库数据\BatchCommon\LogClass.cs
     文件        3858  2020-06-03 10:31  清除日志文件数据库数据\BatchCommon\MessageClass.cs
     目录           0  2020-09-19 14:00  清除日志文件数据库数据\BatchCommon\obj\
     目录           0  2020-09-19 14:00  清除日志文件数据库数据\BatchCommon\obj\Debug\
     文件          42  2020-06-19 14:37  清除日志文件数据库数据\BatchCommon\obj\Debug\BatchCommon.csproj.CoreCompileInputs.cache
     文件        2652  2020-06-19 14:37  清除日志文件数据库数据\BatchCommon\obj\Debug\BatchCommon.csproj.FileListAbsolute.txt
     文件        8277  2020-07-04 14:44  清除日志文件数据库数据\BatchCommon\obj\Debug\BatchCommon.csprojAssemblyReference.cache
     文件       22016  2020-06-19 14:37  清除日志文件数据库数据\BatchCommon\obj\Debug\BatchCommon.dll
     文件       65024  2020-06-19 14:37  清除日志文件数据库数据\BatchCommon\obj\Debug\BatchCommon.pdb
     文件        6456  2020-06-17 11:23  清除日志文件数据库数据\BatchCommon\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
............此处省略61个文件信息

评论

共有 条评论