vote up 6 vote down star
1

I'm using .net 2.0 filewatcher to watch a folder for new files. It works perfectly except when I put more than ~80 files at once. The event just doesn't trigger anymore. It's as if the filewatcher is set to keep track of certain number of files.

For the time being I have asked the user not to put more than 50 files at a time and that seems to work however I would like to fix it so that hundreds of files can be dropped into the folder at once.

Here's the code I'm using for the event. It's pretty standard stuff nothing fancy.


FileWatcher = new FileSystemWatcher();
FileWatcher.Path = ConfigurationManager.AppSettings["FolderOfFilesToWatch"];
FileWatcher.NotifyFilter = NotifyFilters.FileName;
FileWatcher.Filter = "*_*_*.*";
FileWatcher.Created += new FileSystemEventHandler(watcher_Created);
FileWatcher.EnableRaisingEvents = true;


static void watcher_Created(object sender, FileSystemEventArgs e)
{
Console.Write(e.Name);
}

Any ideas?

flag

75% accept rate

5 Answers

vote up 7 vote down check

You probably need to increase the FileSystemWatcher.InternalBufferSize. By default, FileSystemWatcher uses a smaller buffer for performance, and can overflow if too many changes occur in a short time frame.

Try setting a larger buffer size to prevent that from occurring.

link|flag
1  
Just be very careful: as per MSDN: "Increasing buffer size is expensive, as it comes from non paged memory that cannot be swapped out to disk, so keep the buffer as small as possible. To avoid a buffer overflow, use the NotifyFilter and IncludeSubdirectories properties to filter out unwanted change notifications. " – ocdecio Jun 2 at 17:41
@ocdecio: Yes. He's already using NotifyFilter, though, so it would just be a matter of whether or not he's tracking subdirectories. His specific request was to track "hundreds" of files, which will require a buffer size quite a bit larger than the 4k default size. – Reed Copsey Jun 2 at 17:47
vote up 10 vote down

See Considerations for File Changes on High-Volume Systems.

link|flag
1  
"By default, the buffer is set to a size of 4 KB. A 4 KB buffer can track changes on approximately 80 files in a directory." Spot-on, nice link. – Andrew Coleson Jun 2 at 17:43
Thanks for the link. – Tigran Jun 2 at 18:37
vote up -1 vote down

I hate to say it, but I don't trust the built-in .NET FileWatcher. Filewatching is better accomplished with third-party components.

link|flag
Can you recommend any such third-party components? – RichieHindle Jun 2 at 17:38
Without any suggestions this answer is hardly useful is it? – Brian Rasmussen Jun 2 at 17:52
And without any basis for the lack of trust. The .NET FileWatcher is built as a thin layer on the Win32 ReadDirectoryChangesW() method. Is the Win32 method also suspect? – Cheeso Jun 2 at 18:03
The basis for the lack of trust is past experience, however I will admit I didn't know then about the good advice above. To each his own... – Dave Swersky Jun 2 at 20:16
vote up 1 vote down

I use FileWatcher but I took a "belt and suspenders" approach. Whenever I get a FileWatcher event I stick around and check for files I haven't seen before (in my case I have a file catalog). Believe me, there will be a time when you get thousands of files dropped in a folder and you must have another safeguard to account for all of them.

Another alterative you may look into is change journals, although it is (AFAIK) limited to disks attached to your machine, whereas you can use FileWatcher to watch UNC paths as well.

link|flag
vote up 0 vote down

It might be possible that you are exceeding your system's ThreadPool count. When The FileSystemWatcher fires off an event it does so from a thread retrieved from this pool. It is possible lose these events if you don't have enough threads allocated to your ThreadPool.

http://msdn.microsoft.com/en-us/library/system.threading.threadpool.aspx

As others, especially, 'ocdecio' have noted it is good not to completely trust the FileSystemWatcher. It is notoriously inconsistent under heavy load.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.