在OnChanged事件中

时间:2015-08-18 12:17:11

标签: c# forms file filesystemwatcher

我创建了一个使用filewatcher观看记事本文件的程序..每当文件中的文本发生变化时......我制作了一个.exe程序运行... .exe程序也运行正常..但它运行了两次...我搜索了Stackoverflow和其他网站..但我无法理解我哪里出错.. Frnds Plz帮助我清除我的错误..我知道这个问题已被问过很多次..但是因为我是新来的c#我无法理解.. Plz帮我修补..

    public Form1()
    {
        InitializeComponent();
    }

    private void filewatcher()
    {
        path = txtBoxPath.Text;
        FileSystemWatcher fileSystemWatcher1 = new FileSystemWatcher();
        fileSystemWatcher1.Path = path;
        fileSystemWatcher1.Filter = "*.txt";
        fileSystemWatcher1.NotifyFilter = NotifyFilters.LastWrite;
        fileSystemWatcher1.Changed += new FileSystemEventHandler(OnChanged);
        fileSystemWatcher1.EnableRaisingEvents = true;
    }

    private void tbtextcopy()
    {
        Clipboard.SetText(File.ReadAllText(path));
        this.textBox1.Text = Clipboard.GetText().ToString();
    }
    private void OnChanged(object sender, FileSystemEventArgs e)
    {

        try
        {
            ProcessStartInfo PSI = new ProcessStartInfo(@"C:\Program Files\Ranjhasoft\Icon Changer\Icon changer.exe");
            Process P = Process.Start(PSI);
            P.WaitForExit();
            P.Close();
        }

        finally
        {
            fileSystemWatcher1.EnableRaisingEvents = false;
        }

    }

    private void BrowserBtn_Click(object sender, EventArgs e)
    {

        FolderBrowserDialog dlg = new FolderBrowserDialog();
        dlg.SelectedPath = this.txtBoxPath.Text;
        DialogResult result = dlg.ShowDialog();

        if (result == DialogResult.OK)
        {
            if (!string.IsNullOrEmpty(dlg.SelectedPath))
            {
                this.txtBoxPath.Text = dlg.SelectedPath;
            }
        }

        if (string.IsNullOrEmpty(this.txtBoxPath.Text))
        {
            this.txtBoxPath.Text = appDataFolder;
        }
        if (!Directory.Exists(path))
        {
            MessageBox.Show("Specified folder does not exist");
        }
    }

    private void txtBoxPath_TextChanged(object sender, EventArgs e)
    {
        if (!string.IsNullOrEmpty(this.txtBoxPath.Text))
        {
            this.filewatcher();
        }
    }

}

}

1 个答案:

答案 0 :(得分:2)

你有代码

fileSystemWatcher1.Changed += new FileSystemEventHandler(OnChanged);

你可以重复为事件添加相同的事件处理程序..所以是的,它可以做20次..

您只需将其设置为运行一次代码,因此只需添加一次。如果您停止触发事件,则事件处理程序不会擦除。因此,设置eventhandler一次,而不是每次都在filewatcher方法中,它将重复添加相同的处理程序并产生多个响应。

所以在这里更改你的代码:

public Form1()
{
    InitializeComponent();
    fileSystemWatcher1.Changed += new FileSystemEventHandler(OnChanged);
}

并从filewatcher方法中删除它。现在,当raiseevents设置为true时,它将运行一次,而当它不是时,它将不运行。