正在处理FileSystemWatcher

本文关键字:FileSystemWatcher 处理 | 更新日期: 2023-09-27 18:20:29

所以我的理解是,每当使用实现IDisposable的类时,它的父级也需要实现IDispasable接口。(使用FileSystemWatcher的FileWatcher)

那么,当使用FileSystemWatcher时,处理FileSystemWatcher的正确方法是什么?我希望FileWatcher在应用程序关闭之前不要被释放/(监视)。

我会使用负责任的所有者模式吗?(尝试/最终)还是其他什么?我的FileWatcher是否也应该实现IDisposable?我将无法使用{},因为这个fileWatcher应该在应用程序运行的整个过程中监视文件的更改。处理这种情况的正确方法是什么?

public class FileWatcher : IFileWatcher
{
    private FileSystemWatcher watcher;
    public event EventHandler<EventArgs> SettingsChanged;
    public FileWatcher(bool start)
    {
        this.RegisterForChanges();
    }
    public void OnChanged(object source, EventArgs e)
    {
        if (this.SettingsChanged != null)
        {
            this.SettingsChanged(source, new EventArgs());
        }
    }
    private void RegisterForChanges()
    {
        /// more code here etc
        ...
        this.watcher = new FileSystemWatcher
                           {
                               Path = directory, 
                               NotifyFilter =
                                   NotifyFilters.LastAccess | NotifyFilters.LastWrite
                                   | NotifyFilters.FileName | NotifyFilters.DirectoryName, 
                               Filter = fileName
                           };
        // Add event handlers.
        this.watcher.Changed += this.OnChanged;
        // Begin watching.
        this.watcher.EnableRaisingEvents = true;
    }

正在处理FileSystemWatcher

是的,在这种情况下,实现IDisposable是正确的解决方案(在我看来)。您的对象是长寿命的,并且必须位于任何特定函数调用的范围之外,因此所有函数范围级别的解决方案(usingtry..finally等)都是无效的。

为此,IDisposable是.NET中的标准模式,当FileWatcher被丢弃时,您可以很容易地丢弃嵌套对象。

关闭应用程序时,运行dispose方法。

根据请求的方法,当你想在关闭程序时处理一些东西。

如果您通过使用类,那么IDisposable用于处理类对象,但本质上,当您关闭程序时,您可能仍然想这样做

bool myFlag = false;
private FileSystemWatcher watcher;
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
 {
           myFlag = true;
           if(myFlag)
           watcher.Dispose(); //Your FileSystemWatcher object
 }