0

「プロセスはfile..etcにアクセスできません」というエラーを修正する方法はありますか?フローは、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;
    }
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 に答える