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 ?