使用FileSystemWatcher中的XDocument.Load加载xml文件。错误“进程无法访问文件..等等”

时间:2013-03-27 06:56:09

标签: c# linq-to-xml filesystemwatcher

有没有办法修复错误“进程无法访问文件..等等”。流程是当我检测到需要从xml文件中读取特定节点的xml文件时,filesystemwatcher将监视xml文件。

我该如何解决这个问题?任何想法或建议都将是一个很大的帮助。感谢

这是filesystemwatcher代码

private void fileSystemWatcher_Created(object sender, System.IO.FileSystemEventArgs e)
    {
        try
        {
            string type = GetType(e.FullPath).ToUpper();
            if (type == "CC")
            {
                if (Global.pc_flag)
                {
                    ProcessPC(e.FullPath);
                }
                else if (Global.mw_flag)
                {
                    ProcessMW(e.FullPath);
                }
                else
                {
                    ProcessXML(e.FullPath);
                }
            }
            else if (type == "GC")
            {
                ProcessMW(e.FullPath);
            }
            //Process(e.FullPath);
        }
        catch(Exception ex)
        {
            error++;
            lblErrors.Text = error.ToString();
            MessageBox.Show(ex.Message);
        }
    }

这里包含GetType

private string GetType(string file)
    {
        string type = string.Empty;
        using (var stream = File.Open(file, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
        {
            var request = XDocument.Load(stream);
            var get_command = from r in request.Descendants("Transaction")
                              select new
                              {
                                  Type = r.Element("Type").Value
                              };

            foreach (var c in get_command)
            {
                type = c.Type;
            }
        }
        return type;
    }

1 个答案:

答案 0 :(得分:1)

您未在代码中使用stream,而在流已打开时,您无法访问XDocument.Load(file)

中的文件
private string GetType(string file)
{
    string type = string.Empty;
    var request = XDocument.Load(file);
    var get_command = from r in request.Descendants("Transaction")
                      select new
                      {
                          Type = r.Element("Type").Value
                      };
    foreach (var c in get_command)
    {
        type = c.Type;
    }
    return type;
}