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.

Windows Service w/ FileSystemWatcher in C#

I have to create a program that monitors changes in file size. I already made a simple windows service and …

c# windows-services filesystemwatcher
Detecting moved files using FileSystemWatcher

I realise that FileSystemWatcher does not provide a Move event, instead it will generate a separate Delete and Create events …

c# filesystemwatcher
.NET filesystemwatcher - was it a file or a directory?

Is there a way to determine with the FSW if a file or a directory has been deleted?

c# .net filesystemwatcher
watching a directory in ruby

We have an application that needs to process incoming files that are dropped into a directory. I am looking for …

ruby-on-rails ruby filesystemwatcher
Does anyone have a FileSystemWatcher-like class in C++/WinAPI?

I need a .Net's FileSystemWatcher analog in raw C++/WinAPI. I almost started to code one myself using FindFirstChangeNotification/FindNextChangeNotification, …

c++ winapi filesystemwatcher
Using a FileSystemWatcher with Windows Service

I have a windows service which needs to monitor a directory for files and then move it to another directory. …

c# windows-services filesystemwatcher
Find out username(who) modified file in C#

I am using a FileSystemWatcher to monitor a folder. But when there is some event happening in the directory, I …

c# file-io event-log filesystemwatcher
C# FileSystemWatcher And FTP

I monitor files that are dropped on a ftp via filesystem watcher then move to another dir. Now I trigger …

c# ftp filesystemwatcher
FileSystemWatcher used to watch for folder/file open

I have browsed around but cannot find any information on what I am seeking, if there is another post that …

c# .net wpf filesystemwatcher
How to force FileSystemWatcher to wait till the file downloaded?

I am downloading a file and want to execute the install only after the download is complete. How do I …

c# multithreading filesystemwatcher