AspNetCore 2.1后台服务中的FileSystemWatcher\IHostedService

5

我正在尝试在AspNet Core 2.1应用程序中使用BackgroundService的实现。 在ExecuteAsync中创建了一个FileSystemWatcher,并链接了关联事件,但是,fsw事件要么从未触发(无法访问?已处理?)要么是由于异步或范围混乱而出现了某些问题。 我似乎想不出解决方法。以下是相关代码。

public class FSWImpl : BackgroundService
{
    private readonly IHostingEnvironment _env;
    private readonly ILogger<LiftAndShift> _logger;
    private FileSystemWatcher _fsw;

    public LiftAndShift(IHostingEnvironment env, ILogger<FSWImpl> logger)
    {
        _env = env;
        _logger = logger;
    }

    protected override Task ExecuteAsync(CancellationToken stoppingToken)
    {
        _logger.LogInformation("Creating new FSW");
        var path = Path.Combine(_env.ContentRootPath, "WebData");
        _fsw = new FileSystemWatcher(path,"*.json");
        _fsw.Created += _fsw_Created;
        _fsw.Changed += _fsw_Changed;
        _fsw.Renamed += _fsw_Renamed;
        _fsw.Error += _fsw_Error;
        return Task.CompletedTask;
    }

    private void _fsw_Error(object sender, ErrorEventArgs e) => _logger.LogInformation("File error");
    private void _fsw_Renamed(object sender, RenamedEventArgs e) => _logger.LogInformation("File Renamed");
    private void _fsw_Changed(object sender, FileSystemEventArgs e) => _logger.LogInformation("File changed");
    private void _fsw_Created(object sender, FileSystemEventArgs e) => _logger.LogInformation("File created");
}  

我在启动时将此服务注册为 services.AddHostedService<FSWImpl>();


这样行吗?services.AddHostedService<FSWImpl>(); 将其添加为短暂的,这将销毁 FSWImpl 并因此很快销毁 FileSystemWatcher 对象。 因此,文件将不再被监视。 - Abhi
1个回答

5

要启用FileSystemWatcher,你需要将EnableRaisingEvents设置为True

演示代码:

        protected override Task ExecuteAsync(CancellationToken stoppingToken)
    {
        _logger.LogInformation("Creating new FSW");
        var path = Path.Combine(_env.ContentRootPath, "WebData");
        _fsw = new FileSystemWatcher(path, "*.json");
        _fsw.Created += _fsw_Created;
        _fsw.Changed += _fsw_Changed;
        _fsw.Renamed += _fsw_Renamed;
        _fsw.Error += _fsw_Error;
        _fsw.EnableRaisingEvents = true;
        return Task.CompletedTask;
    }

FileSystemWatcher.cs

    //
    // Summary:
    //     Gets or sets a value indicating whether the component is enabled.
    //
    // Returns:
    //     true if the component is enabled; otherwise, false. The default is false. If
    //     you are using the component on a designer in Visual Studio 2005, the default
    //     is true.
    //
    // Exceptions:
    //   T:System.ObjectDisposedException:
    //     The System.IO.FileSystemWatcher object has been disposed.
    //
    //   T:System.PlatformNotSupportedException:
    //     The current operating system is not Microsoft Windows NT or later.
    //
    //   T:System.IO.FileNotFoundException:
    //     The directory specified in System.IO.FileSystemWatcher.Path could not be found.
    //
    //   T:System.ArgumentException:
    //     System.IO.FileSystemWatcher.Path has not been set or is invalid.
    public bool EnableRaisingEvents { get; set; }

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接