-1

在将大量 XML 文件导入应用程序后,我尝试使用 XML 文档类对其进行修改,为此我创建了一些方法来进行修改。

问题是它工作正常的启动方法,当涉及到第二个时,它显示 System.IO 异常,例如“文件已经在使用另一个进程”。

所以任何人都可以帮助我解决这个问题。

示例代码我在做什么:

Method1(fileList);
Method2(fileList);
Method3(fileList);

    private void Method1(IList<RenamedImportedFileInfo> fileList)
    {
           try
        {

            string isDefaultAttribute = Resource.Resources.ImportIsDefaultAttribute;
            string editorsPath = editorsFolderName + Path.DirectorySeparatorChar + meterType;
            string profilesPath = profileFolderName + Path.DirectorySeparatorChar + meterType;
            string strUriAttribute = Resource.Resources.ImportUriAttribute;

            foreach (RenamedImportedFileInfo renameInfo in fileList)
            {
                if (renameInfo.NewFilePath.ToString().Contains(editorsPath) && (renameInfo.IsProfileRenamed != true))
                {
                    var xmldoc = new XmlDocument();
                    xmldoc.Load(renameInfo.NewFilePath);

                    if (xmldoc.DocumentElement.HasAttribute(isDefaultAttribute))
                    {
                        xmldoc.DocumentElement.Attributes[isDefaultAttribute].Value = Resource.Resources.ImportFalse;
                    }

                    XmlNodeList profileNodes = xmldoc.DocumentElement.GetElementsByTagName(Resource.Resources.ImportMeasurementProfileElement);
                    if (profileNodes.Count == 0)
                    {
                        profileNodes = xmldoc.DocumentElement.GetElementsByTagName(Resource.Resources.ImportBsMeasurementProfileElement);
                    }
                    if (profileNodes.Count > 0)
                    {
                        foreach (RenamedImportedFileInfo profileName in oRenamedImportedFileList)
                        {
                            if (profileName.NewFilePath.ToString().Contains(profilesPath))
                            {
                                if (string.Compare(Path.GetFileName(profileName.OldFilePath), Convert.ToString(profileNodes[0].Attributes[strUriAttribute].Value, CultureInfo.InvariantCulture), StringComparison.OrdinalIgnoreCase) == 0)
                                {
                                    profileNodes[0].Attributes[strUriAttribute].Value = Path.GetFileName(profileName.NewFilePath);
                                    renameInfo.IsProfileRenamed = true;
                                    break;
                                }
                            }
                        }
                    }

                    xmldoc.Save(renameInfo.NewFilePath);
                    xmldoc = null;
                    profileNodes = null;
                }
            }
            oRenamedImportedFileList = null;
        }
        catch (NullReferenceException nullException) { LastErrorMessage = nullException.Message; }
    }

谢谢,拉吉

4

1 回答 1

0

您可能在应用程序中打开同一个文件两次。在您可以再次打开它之前,您必须先将其关闭(或者让它保持打开状态并在不再次打开的情况下处理同一个文档)。

如需有关如何实现此功能的帮助,请向我们展示更多代码,以便我们为您提供建议。

于 2013-04-05T10:03:38.447 回答