0

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

我怎样才能解决这个问题?任何想法或建议都会有很大帮助。谢谢

这是文件系统观察程序代码

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;
    }
4

1 回答 1

1

您不使用您的streamin 代码,并且当流打开时您无法访问该文件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;
}
于 2013-03-27T07:04:15.870 回答