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.

Monitor multiple folders using FileSystemWatcher

Whats the best way to monitor multiple folders (not subdirectories) using FileSystemWatcher in C#?

c# .net filesystemwatcher
FileSystemWatcher not firing events

For some reason, my FileSystemWatcher is not firing any events whatsoever. I want to know any time a new file …

c# filesystemwatcher
Use FileSystemWatcher on a single file in C#

When i try to set the watcher path to a single file like so: watcher.Path = filePath1; I get the …

c# .net filesystemwatcher
VB.NET FileSystemWatcher Multiple Change Events

I have the following code: Imports System.IO Public Class Blah Public Sub New() InitializeComponent() Dim watcher As New FileSystemWatcher("…

.net vb.net filesystemwatcher
FileSystemWatcher Fails to access network drive

I am trying to run a file watcher over some server path using windows service. I am using my windows …

c# windows-services filesystemwatcher
FileSystemWatcher stops catching events

I am writing a c# program to let me know when a file has been added or deleted. I run …

c# filesystemwatcher
FileSystemWatcher for FTP

How can I implement a FileSystemWatcher for an FTP location (in C#). The idea is whenever anything gets added in …

c# .net ftp filesystemwatcher
Using FileSystemWatcher with multiple files

I want to use FileSystemWatcher to monitor a directory and its subdirectories for files that are moved. And then I …

c# filesystemwatcher
Which filter of FileSystemWatcher do I need to use for finding new files

So far I know that FileSystemWatcher can look into a folder and if any of the files inside that folder …

c# filesystemwatcher
Node.JS: How does "fs.watchFile" work?

According to the API docs for Node 0.4.3, the fs.watchFile(filename, [options], listener) function starts a routine that will Watch …

filesystems node.js filesystemwatcher