Questions tagged [file-watcher]

A utility or library to perform actions when files are updated, added or deleted.

Common issues for file watcher utilities include

  • How to determine when files being added are fully available (IE: If a file is being FTPed to a directory, has the FTP process finished?)
  • How to notify interested consumers that a file has been updated/added/deleted
  • Scheduling issues such as whether the file watcher runs continuously or every xx seconds or minutes.
  • Whether a file is moved/archived after processing
  • Whether multiple input files that match a wildcard can be processed concurrently.

If your question is about the .NET component FileSystemWatcher also include the tag . For the Qt toolkit QFileSystemWatcher class also include the tag .

332 questions
-2
votes
1 answer

C# FileWatcher - How to Include only one subfolder?

I told my FileWatcher, that it should include Subdirectories _watcher.IncludeSubdirectories = true; The problem, that I have is, that there are multiple files with the same file-ending. So my watcher gets triggered multiple times. I have something…
RedP1ll
  • 3
  • 4
-3
votes
2 answers

Does any programming language provides a function to track execution files?

Theres the FileSystemWatcher in C# to keep track on files if they edited, created or deleted. Somehow, i also want to track a executionfile - ".exe" - to get like the time of its execution and parameters, which are transfered on the execution. Is…
penc
  • 35
  • 4
1 2 3
22
23