0

I have an Observable of file created. I want delay the emission of item for file that are locked because still opened in write.

Created = Observable
                .FromEventPattern<FileSystemEventHandler, FileSystemEventArgs>(h => Watcher.Created += h, h => Watcher.Created -= h)
                .Select(x => x.EventArgs);

CreatedAndNotLockedObservable = ?

Is this possible ?

frhack
  • 4,862
  • 2
  • 28
  • 25

0 Answers0