从两个不同的应用程序生成一个XML(LogData.xml)文件,无需线程

本文关键字:xml LogData XML 文件 线程 一个 程序生成 两个 应用 | 更新日期: 2023-09-27 17:53:23

我想从两个或多个应用程序写入XML日志文件到LogData.xml文件。在运行一个应用程序时,它正确地创建LogData.xml文件,但同时两个应用程序同时运行,并尝试写LogData.xml文件,它给我一个错误消息,如进程无法访问文件Log_Data.xml',因为它正在被另一个进程使用。我使用这个代码

public void WriteXmlLog(string logType, string logFlag, string logModule, string logLocation, string logText, string logStackTrace)
        {
 if (!File.Exists(_logFilePath))
            {
                //File.WriteAllText(_logFilePath, "<?xml version='1.0' encoding='utf-8' standalone='yes'?>'r'n<AppXmlLogWritter></AppXmlLogWritter>");
                XmlTextWriter textWritter = new XmlTextWriter(_logFilePath, null);
                textWritter.WriteStartDocument();
                textWritter.WriteStartElement("AppXmlLogWritter");
                textWritter.WriteEndElement();
                textWritter.Close();
            }
            XmlDocument xmlDoc = new XmlDocument();
            using (FileStream fileStream = new FileStream(_logFilePath, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite))
            {
                string currentDateTime = DateTime.Now.ToString("yyyyMMddHHmmss");
                xmlDoc.Load(fileStream);
                XmlElement newelement = xmlDoc.CreateElement("LogData");
                XmlElement xmlLogID = xmlDoc.CreateElement("LogID");
                XmlElement xmlLogDateTime = xmlDoc.CreateElement("LogDateTime");
                XmlElement xmlLogType = xmlDoc.CreateElement("LogType");
                XmlElement xmlLogFlag = xmlDoc.CreateElement("LogFlag");
                XmlElement xmlLogApplication = xmlDoc.CreateElement("LogApplication");
                XmlElement xmlLogModule = xmlDoc.CreateElement("LogModule");
                XmlElement xmlLogLocation = xmlDoc.CreateElement("LogLocation");
                XmlElement xmlLogText = xmlDoc.CreateElement("LogText");
                XmlElement xmlLogStackTrace = xmlDoc.CreateElement("LogStackTrace");
                xmlLogID.InnerText = _logIDPrefix + currentDateTime + randomNumber;
                xmlLogDateTime.InnerText = currentDateTime;
                xmlLogType.InnerText = ((LogTypes)Convert.ToInt32(logType)).ToString();
                xmlLogFlag.InnerText = logFlag;
                xmlLogApplication.InnerText = _logApplication;
                xmlLogModule.InnerText = logModule;
                xmlLogLocation.InnerText = logLocation;
                xmlLogText.InnerText = logText;
                xmlLogStackTrace.InnerText = logStackTrace;
                newelement.AppendChild(xmlLogID);
                newelement.AppendChild(xmlLogDateTime);
                newelement.AppendChild(xmlLogType);
                newelement.AppendChild(xmlLogFlag);
                newelement.AppendChild(xmlLogApplication);
                newelement.AppendChild(xmlLogModule);
                newelement.AppendChild(xmlLogLocation);
                newelement.AppendChild(xmlLogText);
                xmlDoc.DocumentElement.AppendChild(newelement);
                //}
                //finally
                //{
                //    objMutex.ReleaseMutex();
                //}
            }
            xmlDoc.Save(_logFilePath);
        }

我想实现这一点没有线程

从两个不同的应用程序生成一个XML(LogData.xml)文件,无需线程

也许可以尝试在两个应用程序中使用NLog实现日志记录,并将目标设置为相同的xml。