2
votes
3answers
53 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 not …
0
votes
2answers
22 views
Ignoring a certain file type in a .net “filter”
I made a program which uses a filesystemwatcher component, but it seems to record absolutely EVERY change made, and I want to set it to ignore some file types. How can I set the fi …
1
vote
1answer
38 views
communicate between Firefox extension and .NET application
I am looking for a better way to pass information between my Firefox extension and .NET application. Currently, I am using text files to pass information one way to the .NET appli …
1
vote
1answer
30 views
FileSystemWatcher Priority
I am looking to monitor a folder for create events using the FileSystemWatcher in c#. The problem is that another 3rd party process is also watching that folder, I need (if possibl …
0
votes
1answer
20 views
Monitor filesystem activity of a child process on OS X with normal user privileges
I spawn a child process and need to know what files it modifies, creates or deletes.
I can't use dtrace because I cannot sudo.
I can't use FSEvents because it reports modificatio …
3
votes
1answer
17 views
Why does FileSystemWatcher reset our website sessions?
We have an ASP.NET 2.0 website with an advanced configuration that is not catered for by a standard Web.config. Instead we're storing the config in our own Xml schema in the /bin/ …
1
vote
2answers
53 views
Where do I put a FileSystemWatcher in my mvc application?
We have an asp.net mvc application that we would like to integrate a FileSystemWatcher with. I have seen many good examples on how to implement the FileSystemWatcher but I don't re …
0
votes
2answers
24 views
Automatically compile any Java class when the file is dropped in a directory
I look at a lot of small Java programs. It would be convenient if I could set up a directory (or directory structure) on my Mac where any time I add a .java file, javac automatical …
3
votes
8answers
2k views
VB.NET FileSystemWatcher Multiple Change Events
Hi. I have the following code:
Imports System.IO
Public Class Blah
Public Sub New()
InitializeComponent()
Dim watcher As New FileSystemWatcher("C:\")
…
1
vote
3answers
52 views
How do I know when a file has been modified in a VBA Macro?
Is there a way to watch a file in VBA (which is essentially VB6), so that I know when the file has been modified? -- similar to this only I don't want to know when a file is unused …
1
vote
1answer
65 views
FileSystemWatcher does not work properly when many files are added to the directory at the same time…
FileSystemWatcher does not work properly when many files are added to the directory at the same time...
The Watcher simply doesn't find all the files in the directory - only if th …
1
vote
2answers
70 views
FileSystemWatcher doesn’t recognize Excel SaveAs
I have a simple app using FileSystemWatcher running as a Windows Service. Files are saved to the directory via an excel VB Macro with
ActiveWorkbook.SaveAs Filename:= "pathToSave …
1
vote
1answer
116 views
OSX Equivalent of WinSCP’s Fully-Automated Local-Remote SFTP Sync?
Hello, I fondly remember working with WinSCP and using the fully automated local-to-remote syncing functionality, where the app would monitor a directory hierarchy and send changes …
3
votes
1answer
203 views
FileSystemWatcher not monitoring local user folder or temporary internet files folder in Vista (64bit)
Hi Guys,
I wrote a test program to monitor my Picture folder which points to c:\users[username]\Pictures and temporary internet files folder for the same user. This is program wor …
0
votes
1answer
83 views
Incorrect FileSystemWatcher behaviour with Samba
I am using a .NET FileSystemWatcher on a Windows server to watch a folder on a Windows server.
I also have access to the same folder from a Linux server using Samba.
If I copy a fi …
