Top "Filesystemwatcher" questions

FileSystemWatcher is a .NET component class that listens to the file system change notifications and raises events when a directory, or file in a directory, changes.

Is it really that expensive to increase FileSystemWatcher.InternalBufferSize?

I'm using a FileSystemWatcher to monitor changes in a folder, but as soon as I have more than a few …

c# .net performance filesystemwatcher
FileSystemWatcher on mapped network drive

Are there any special considerations (other than permissions) that you should take into account when implementing a FSW to monitor …

c# exception-handling filesystemwatcher mapped-drive
Why does FileSystemWatcher fire twice

why does the FileSystemWatcher fire twice? Is there an easy way to fix it? Surely if I update or edit …

vb.net visual-studio-2010 filesystemwatcher
How to run an function when anything changes in a dir with Python Watchdog?

I'm trying to use watchdog to run a sync script whenever anything changes in a dir (except for one specific …

python filesystems filesystemwatcher watchdog python-watchdog
Additional parameters for FileSystemEventHandler

I'm trying to write a program that could monitor multiple folders for file creations and launch the same action but …

c# filesystemwatcher
FileSystemWatcher Network Disconnect

I have a FileSystemWatcher monitoring a file on a network share. If an event occurs to make the share unavailable, …

c# .net filesystemwatcher
Why doesn't FileSystemWatcher detect changes from Visual Studio?

I have made a tiny application that responds to changes to files in a folder. But when I edit the …

c# visual-studio-2008 filesystemwatcher
Auto Sync Azure Blob to local file system

I would like to know if there is a way through which I can auto-sync an Azure blob to the …

azure synchronization filesystemwatcher azure-storage-blobs
Disposing of FileSystemWatcher

So my understanding is that whenever using a class that implements IDisposable, it's parent also needs to implement IDisposable interface. (…

c# .net .net-4.5 filesystemwatcher