RxCookbook icon indicating copy to clipboard operation
RxCookbook copied to clipboard

FileWatcher sample

Open LeeCampbell opened this issue 9 years ago • 2 comments

Provide help to questions like [http://codereview.stackexchange.com/questions/89961/rx-net-file-watcher]

Walk through the issues with FileSystemWatcher and then link back to polling solution from #22

LeeCampbell avatar Nov 17 '15 17:11 LeeCampbell

var fsw = new FileSystemWatcher(".");

var fileChangedStream = Observable.FromEventPattern<FileSystemEventHandler, FileSystemEventArgs>(
    handler => fsw.Changed += handler,
    handler => fsw.Changed -= handler)

LeeCampbell avatar Nov 17 '15 17:11 LeeCampbell

https://aspnetcore.slack.com/archives/rx/p1481549187000056

LeeCampbell avatar Dec 12 '16 13:12 LeeCampbell