How does c# FileSystemWatcher handle multiple files?

326 Views Asked by At

If you have c# FileSystemWatcher monitoring a directory using the Created event how do you go about handling multiple files and processing them if the processing takes a certain period of time. So some files come in and then processing starts. If more files come in before the processing is finished how should this be handled or does the FileSystemWatcher Created event queue them? Would you need to use async methods event handlers for this situation?

1

There are 1 best solutions below

0
On

Yes, FileSystemWatcher queue events, so no file events will be lost, however, if event registration is a time-dependent task, you should make an asynchronous event handler.