Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

43
votes
9answers
12k views

FileSystemWatcher vs Polling to watch for changes

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 ...
34
votes
11answers
9k views

FileSystemWatcher Changed event is raised twice

I have an application where I am looking for a text file and if there are any changes made to the file I am using the onchanged eventhandler to handle the event. I am using the ...
13
votes
7answers
8k views

System.IO.FileSystemWatcher to monitor a network-server folder - Performance considerations

I want to watch a folder tree on a network server for changes. The files all have a specific extension. There are about 200 folders in the tree and about 1200 files with the extension I am watching. ...
11
votes
6answers
9k views

File access error with FileSystemWatcher when multiple files are added to a directory

I am running into an issue with a FileSystemWatcher when multiple files are placed into the watched directory. I want to parse the file as soon as it is placed in the directory. Typically, the first ...
10
votes
2answers
111 views

how to monitor a complete directory tree for changes in Linux?

How can I monitor a whole directory tree for changes in Linux (ext3 file system)? Currently the directory contains about half a million files in about 3,000 subdirectories, organized in three ...
9
votes
3answers
552 views

BackgroundWorker & Timer, reading only new lines of a log file?

My application writes a log file (currently using log4net). I'd like to setup a timer and a background worker to read the log file and print its content into some control in my form, while it's being ...
9
votes
5answers
3k views

Monitor multiple folders using FileSystemWatcher

Whats the best way to monitor multiple folders (not subdirectories) using FileSystemWatcher in C#?
7
votes
3answers
1k views

FileSystemWatcher and windows 7

I am writing a tool that monitors a network directory and is running off of a Windows Server 2008 machine, the OnChanged event for the FileSystemWatcher is being fired correctly from files placed on ...
7
votes
1answer
615 views

FileSystemWatcher triggers for filestream open

I have a filesystemwatcher that will trigger an event when a file is modified. I want to read from that file once the lock has been removed. At the moment I am just trying to open the file once the ...
7
votes
13answers
9k views

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("C:\") ...
6
votes
2answers
168 views

FileSystemWatcher causes crash to desktop

I'm writing a solution where I use some configuration files that should be editable at runtime. I've been using FileSystemWatcher for this purpose before and never had much issues with it but now it's ...
6
votes
2answers
163 views

In Node.js, is it possible to tell where a watched file was moved to?

fs.watch provides only two possible event types: 'rename' and 'change'. Both renaming a file (e.g. using mv) and deleting it (e.g. using rm) cause fs.watch to report a 'rename' event. After a file is ...
6
votes
3answers
87 views

How should I poll a large number of files for changes?

I'd like to poll the file system for any changed, added or removed files or sub-directories. All changes should be detected quickly but without putting pressure on the machine. The OS is Windows >= ...
6
votes
1answer
595 views

FileSystemWatcher stops catching events

I am writing a c# program to let me know when a file has been added or deleted. I run it on my Windows 7 machine and watch an FTP server on our network. It works fine but will suddenly stop ...
6
votes
2answers
420 views

FileSystemWatcher surpassing file system permissions

While experimenting with FileSystemWatcher, I've found out that it somehow surpasses my user account's permissions to files and folders, and will raise change events with information about what has ...
5
votes
4answers
151 views

.NET's FileSystemWatcher crashes when an exception is raised, throws file is in use for future files

I'm having a problem working with filesystemwatcher, it's driving me crazy. Turns out I'm watching for new text files in a folder, when the Created Event is raised, I basically read it using the ...
5
votes
2answers
189 views

Java nio FileSystem Watcher locks directories. Deletion becomes impossible

I'm using the new feature of Java7 for watching directories for changes (as it is described in the following tutorial: http://download.oracle.com/javase/tutorial/essential/io/notification.html ) The ...
5
votes
4answers
220 views

monitor file/directory access in C#

I want to develop the application which logs the files / directories accessed on the machine. e.g. I go to D:\ and into a folder documents and open a word file. I want my application to create a log ...
5
votes
4answers
1k views

C#: Monitoring copied or moved files with FileSystemWatcher

I have come across several "solutions" here and across the web but none seem to fit the bill. What I am looking to do is have an app monitor a folder for new files (either by creation, a move, or a ...
5
votes
2answers
456 views

.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?
5
votes
4answers
2k views

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 for the same file. (The FilesystemWatcher is watching both the source and ...
5
votes
4answers
5k views

C# FileSystemWatcher And FTP

I monitor files that are dropped on a ftp via filesystem watcher then move to another dir. Now I trigger the copy off the create event of the filesystem watcher but obviously in the case of ftp the ...
5
votes
5answers
3k views

Notification when a file changes?

Is there some mechanism by which I can be notified (in C#) when a file is modified on the disc?
5
votes
1answer
7k views

How do you monitor file access and changes on a file server by user name?

I was asked to find a way to monitor changes (modification, renaming, deletion, moving) of files in specific folders on the company's shared file server (simple windows shared directory). I wrote a ...
4
votes
5answers
58 views

How do I get this event-based console app to not terminate immediately?

Source class Program { static void Main(string[] args) { var fw = new FileSystemWatcher(@"M:\Videos\Unsorted"); fw.Created+= fw_Created; } static void ...
4
votes
3answers
402 views

C# - Predict file system events on folder delete

This is more a question about what's the best practice in implementing this. I have a FileSystemWatcher which should inform me about User's changes on files and folders. Also subdirs are watched. In ...
4
votes
4answers
2k views

filesystemwatcher as windows service?

I am setting out to create an app that will watch a directory for any files created. pretty straightforward time to use a filesystemwatcher. My question relates to how to utilize it. Is it common ...
4
votes
5answers
1k views

FileSystemWatcher does not report changes in a locked file

I'm monitoring a folder using a FileSystemWatcher like this: watcher = new FileSystemWatcher(folder); watcher.NotifyFilter = NotifyFilters.Size; watcher.Changed += changedCallback; When I open a ...
4
votes
1answer
325 views

Disabling FileSystemWatcher for specific updates?

Does anyone have any ideas how I can reliably disable a FileSystemWatcher object when my application makes changes to the files in the directory, so that I am only watching for external changes to the ...
4
votes
2answers
1k views

After FileSystemWatcher fires - Thread Pool or Dedicated thread?

I am about to implement the archetypal FileSystemWatcher solution. I have a directory to monitor for file creations, and the task of sucking up created files and inserting the into a DB. Roughly ...
4
votes
2answers
1k views

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 file in Visual Studio 2008, it never detects anything. If I edit the file in Notepad instead, ...
4
votes
3answers
2k views

FileSystemWatcher Dispose call hangs

We just started running in to an odd problem with a FileSystemWatcher where the call to Dispose() appears to be hanging. This is code that has been working without any problems for a while but we just ...
3
votes
5answers
98 views

C# Track copied files

I am trying to keep track of files that are copied by users and other applications. The FileSystemWatch only has events for Changed, Created, Deleted, Disposed, Error, and Renamed. It doesn't fire an ...
3
votes
2answers
59 views

Develop a window’s service in c# for backing up data from 4 different locations to one location? [closed]

Requirement: The service should monitor 4 different systems and as and when a new file is created on any of these systems, the file should be moved to a server location. Moving need not be an ...
3
votes
1answer
138 views

Notification callback in iOS when iTunes sync/file transfer is complete

I have searched for how to receive callbacks in iOS5 when the file system has changed. I've found the following sample from Apple's site, but it only notifies the given delegate when a file is ...
3
votes
2answers
471 views

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 want to trigger some code when all the files have been moved. But I don't know how. ...
3
votes
5answers
186 views

FileSystemWatcher event on adding a folder with subdirectories

I'm using a FileSystemWatcher to monitor a directory for new folders created. This would work just fine, except that each of these folders can have one or more subdirectories inside of them. The ...
3
votes
1answer
428 views

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 a mapped network drive. Will the FSW throw an exception if the drive ...
3
votes
1answer
249 views

Is there a good objc library wrapper for File System Events/kqueue that handles recursive watching for me?

I want to write an OSX (Snow Leopard) app that receives notifications when files within a specific directory are changed, and I want access to the path of the specific file that was changed. I know I ...
3
votes
1answer
3k views

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 for changes on filename. The callback listener will be called ...
3
votes
2answers
257 views

Application just closes (no error or smth) when run from VS2010

Problem is that application closes without any error, VS stays opened. I have multiple dynamically created FileSystemWatchers, all of them have eventhandler on "Created" event. So this eventhandler ...
3
votes
5answers
420 views

ASP.NET text box alert

I'd like to be able to have a text box alert in my C# web application if a file exists on a server. Any ideas? New to C# here. So for example, if I have text.txt (and I know that it's always going to ...
3
votes
2answers
407 views

Reliable way of monitoring file changes in a directory using the .NET framework

I'm looking for a reliable way of looking for changes in a directory. I have tried using the FileSystemWatcher, but it's rather inaccurate when many small files are created, changed or deleted. It ...
3
votes
4answers
305 views

How to watch a directory for changes in python

Could not find anything in python core to do this. Can anyone recommend a library or "battery" to do this. Ideally i like this to be portable but is ok if it is available only for unix (my server).
3
votes
3answers
459 views

C# Detect file moves trough different folders

I want to detect every filechanges on a specific folder (except data changes). I decided to use System.IO.FileSystemWatcher to manage that. // // fileSysWatchFile // ...
3
votes
4answers
518 views

C# file/folder monitor

I already managed to see file and folder changes with the FileSystemWatcher. My problem is that I can't make a difference between files and folder. It's possible that a file and a folder have the ...
3
votes
5answers
730 views

FileSystemWatcher for notification

I'm creating a Windows application which use FileSystemWatcher. FileSystemWatcher watches some catalog for changes. And every time some file is added to this catalog FileSystemWatcher must add ...
3
votes
6answers
344 views

Detect File Read in C#

I'm using FileSystemWatcher to check when a file is modified or deleted, but I'm wondering if there is any way to check when a file is read by another application. Example: I have the file ...
3
votes
1answer
170 views

How can I tell file deletion from directory deletion using JDK 7?

I am using JDK 7's WatchService to monitor directories. The ENTRY_DELETE event tells me an entry has been deleted. I can get the name of that entry doing something similar to: WatchEvent<Path> ...
3
votes
4answers
574 views

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 with different settings for each folder. My problem is in specifying an extra ...

1 2 3 4 5 6