另一个进程正在使用的XML文件

时间:2012-09-12 20:17:51

标签: c# xml file process

最近,我开始开发一个在C#程序中使用XML文档的应用程序。一切都运行良好,但是当我编辑代码,并在程序中添加更多功能以防XML被删除,损坏等时,程序不再需要正常运行了。

提交数据并将其传输到XML时使用以下代码:

    private void doneCreate_Click(object sender, EventArgs e)
    {
        //Initialize new XMLDocument class.
        XmlDocument XmlDoc = new XmlDocument();

        //See if the card data file is there, if not, create it.
        if (File.Exists(xmlPath) == false)
        {
            using (FileStream createFile = File.Create(xmlPath))
            {
                Byte[] FileData = new UTF8Encoding(true).GetBytes(toBase64("<studycards></studycards>"));
                // Add some information to the file.
                createFile.Write(FileData, 0, FileData.Length);
                createFile.Close();
            }

            XMLData = "<studycards></studycards>";
        }
        else
        {
            XMLData = readXML();

            if (XMLData == "")
            {
                XMLData = "<studycards></studycards>";
            }
            else
            {
                XMLData = fromBase64(XMLData);
            }
        }

        XmlDoc.LoadXml(XMLData);

        XmlElement Group = XmlDoc.CreateElement("Group", null);
        XmlAttribute Group_Attr = XmlDoc.CreateAttribute("Name");
        Group_Attr.Value = groupName.Text;

        Group.Attributes.Append(Group_Attr);

        foreach (string[] Card in CardData)
        {
            try
            {
                FrontData = Card[0].ToString();
                BackData = Card[1].ToString();

                NewCard = XmlDoc.CreateElement("Card");
                FrontElement = XmlDoc.CreateElement("Front");
                FrontElement.InnerText = FrontData;

                BackElement = XmlDoc.CreateElement("Back");
                BackElement.InnerText = BackData;

                NewCard.AppendChild(FrontElement);
                NewCard.AppendChild(BackElement);
                Group.AppendChild(NewCard);
            }

            catch
            {
                break;
            }
        }

        XmlDoc.DocumentElement.AppendChild(Group);

        XmlTextWriter write = new XmlTextWriter(xmlPath, null);
        write.Formatting = Formatting.Indented;
        XmlDoc.Save(write); 
    }

尝试在应用程序中单击“完成”时,我会看到以下异常:

该进程无法访问文件'C:\ Users \ Toshiba \ documents \ visual studio 2010 \ Projects \ StudyCards \ StudyCards \ bin \ Debug \ Resources \ card_data.xml',因为它正由另一个进程使用。

任何解决方案?

1 个答案:

答案 0 :(得分:0)

这可能至少是问题的部分

XmlTextWriter write = new XmlTextWriter(xmlPath, null);
write.Formatting = Formatting.Indented;
XmlDoc.Save(write);

你永远不会关闭作家,所以我希望它能让文件保持打开状态。这将阻止未来打开文件的尝试,直到终结者开始。

或者它可能是readXML()的一部分,你没有显示 - 再次,如果文件保持打开状态,那将导致问题。