How to use the FileSystemWatcher with FIFO processing? The FileSystemWatcher trigger event whenever the files are pasted in the directory, so I want to perform one file at a time as first in first out processing. How is this possible and how to implement it? Kindly provide with an example.
I want to watch over the directory using FileSystemWatcher and process one file at a time as first in first out processing of files in C#.