I need to setup an application that watches for files being created in a folder (locally or on a network drive) and I was wondering if anyone has any thoughts on whether the FileSystemWatcher or polling on a timer would be the best option. I have used both methods in the past, but not extensively. Have you run into any issues (performance, reliability etc.) with either method? I know there isn't a "right way" to do this, I'm just looking opinions.
|
|
||||
|
|
|
I have seen the file system watcher fail in production and test environments. I now consider it a convenience, but I do not consider it reliable. My pattern has been to watch for changes with the files system watcher, but poll occasionally to catch missing file changes. Edit: If you have a UI, you can also give your user the ability to "refresh" for changes instead of polling. I would combine this with a file system watcher. |
|||||||||||||||
|
|
The biggest problem I have had is missing files when the buffer gets full. Easy as pie to fix--just increase the buffer. Remember that it contains the file names and events, so increase it to the expected amount of files (trial and error). It does use memory that cannot be paged out, so it could force other processes to page if memory gets low. Here is the MSDN article on buffer : FileSystemWatcher..::.InternalBufferSize Property Per MSDN:
We use 16MB due to a large batch expected at one time. Works fine and never misses a file. We also read all the files before beginning to process even one...get the file names safely cached away (in our case, into a database table) then process them. For file locking issues I spawn a process which waits around for the file to be unlocked waiting one second, then two, then four, et cetera. We never poll. This has been in production without error for about two years. |
|||||
|
|
The As mentioned by @ChillTemp above, the watcher may not work on non-Windows shares. For example, it will not work at all on mounted Novell drives. I agree that a good compromise is to do an occasional poll to pick up any missed changes. |
|||||||
|
|
Also note that file system watcher is not reliable on file shares. Particularly if the file share is hosted on a non-windows server. FSW should not be used for anything critical. Or should be used with an occasional poll to verify that it hasn't missed anything. |
|||||||||
|
|
Personally, I've used the |
||||
|
|
|
I currently use the I have found that as long as the I have no experience on remote file watching and non-Windows shares. I would consider polling the file to be redundant and not worth the overhead unless you inherently distrust the |
||||
|
|
|
I'd go with polling. Network issues cause the |
||||
|
|
|
I have run into trouble using |
||||
|
|
|
I had some big problems with FSW on network drives: Deleting a file always threw the error event, never the deleted event. I did not find a solution, so I now avoid the FSW and use polling. Creation events on the other hand worked fine, so if you only need to watch for file creation, you can go for the FSW. Also, I had no problems at all on local folders, no matter if shared or not. |
||||
|
|