Tagged Questions
The fsevents tag has no wiki summary.
10
votes
3answers
5k views
How do I make my program watch for file modification in C++?
There are a lot of programs, Visual Studio for instance, that can detect when an outside program modifies a file and then reload the file if the user wants chooses. Is there a relatively easy way to ...
9
votes
3answers
3k views
File-level filesystem change notification in Mac OS X
I want my code to be notified when any file under (either directly or indirectly) a given directory is modified. By "modified", I mead I want my code to be notified whenever a file's contents are ...
6
votes
1answer
122 views
Writing a file with vim doesn't fire a file change event on OS X
I am using watchdog to monitor .less file change events on OS X. If I change the contents of a .less file with TextMate or Sublime Text the modification event is captured. However, if I edit the ...
6
votes
7answers
9k views
How does the DropBox Mac client work?
I've been looking at the DropBox Mac client and I'm currently researching implementing a similar interface for a different service.
How exactly do they interface with finder like this? I highly ...
5
votes
4answers
1k views
RVM, FSEvents, and CarbonCore on OS X
I'm setting up a project that uses SASS, which uses FSEvents to keep from polling the disk. It seems that this doesn't play nice with RVM, however. That means that when I run sass --watch I get this ...
3
votes
1answer
248 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
2answers
973 views
How to dectect new or modified files in Mac OSX
In Windows OS, MS provides ReadDirectoryChangesW and FindFirstChangeNotification API to dectect new or modified file, does the Mac OSX provide equal function as well?
2
votes
0answers
61 views
Mac OS X How do I programatically detect if a changed file is still being 'used' by the same process that changed it?
I'm investigating a problem with a utility we've developed. We track a file or a directory and when a change has been made we upload the new version to a central repository. Our utility is similar ...
2
votes
1answer
157 views
Declaring callback function inside FSEventStreamCreate
There are a couple examples of using an FSEvent to listen for changes in the file system.
How to listen for file system changes MAC - kFSEventStreamCreateFlagWatchRoot
and
FSEvents weirdness on OS ...
2
votes
7answers
1k views
Equivalent of FileSystemWatcher (.NET) in Cocoa
I am developing an application in Cocoa. I want to constantly check whether the contents of a file in a particular location is changed or not (like FileSystemWatcher in .NET). Please anyone give me a ...
1
vote
2answers
277 views
Guard doesn't see file updates
I'm developing a custom engine using this setup.
I've created the engine with
rails plugin new MyEngine --full
Then I've added rspec-rails and guard-rspec as development dependencies with
...
1
vote
0answers
107 views
FSEvents mysteriously fails to deliver events in some folders
this is killing me, and I'm not sure I know how to approach debugging it.
I'm using Mac FSEvents API to monitor a given folder on the file system. However, occasionally, some folders stop sending any ...
1
vote
1answer
355 views
Is it possible to use FSEvents to get notifications that a folder has been moved?
I'm using the FSEvents API to get notifications of changes in a local directory that I'm tracking.
Is it possible to get a notification that the watched directory has been moved to another location ...
1
vote
0answers
294 views
Using NSFileManager to get the modified date of a copied file
I'm using NSFileManager's attributesOfItemAtPath to calculate the date a file was last modified in OS X. While this works, in many cases the file modification date doesn't behave as I would have ...
1
vote
1answer
585 views
MacOS X file system watcher
I am developing an utility application which logs other apps' file system activities. Therefore I am looking for a way to receive file system change notifications including the file paths as well as ...
1
vote
1answer
184 views
Obj-C: FSEvent Reports the Same Event Upon Each Launch of the App
I setup a FSEvent that runs well but it keeps reporting the same event each time I launch the app.
Ex:
My FSEvent monitor directory is:
Test/
...and there are three files:
test1, test2, test3
...
1
vote
2answers
57 views
Javascript/jQuery HasLoaded or equivalent?
I know in jquery it is possible to call the javascript/jquery onload()/load() functions on, for example an image (<img>).
However, if in jquery if i use .html(htmlString) to insert an image ...
1
vote
1answer
903 views
how to create a watcher using fsevents in mac osx 10.6
I m trying to get file event notifications using fsevents.h file.
I m working with Mac OS X 10.6 and XCode 3.1.4 in which i found fsevents.h in four following locations
...
1
vote
3answers
2k views
How to listen for file system changes MAC - kFSEventStreamCreateFlagWatchRoot
I am listening for Directory and disk changes in a COCOA project using FSEvents. I need to get events when a root folder is renamed or deleted. So, I passed kFSEventStreamCreateFlagWatchRoot while ...
1
vote
1answer
181 views
SCEvents doesn't work in some methods?
[Note: The title may be less than accurate, I didn't know how else to phrase it]
For some reason NSFileHandle's readInBackground didn't work so I resorted to SCEvents, a Cocoa wrapper around Mac OS ...
1
vote
1answer
913 views
FSEvents weirdness on OS X Leopard
I want to monitor file-system events for a couple of directories on the mac. The directories I want to monitor might change at runtime, so using FSEvents here's what my app does:
creates a global ...
0
votes
0answers
11 views
Get a current list of watched folders with rb-fsevent in MacOS
I've got this Rails (2) project where I would like to watch several folders outside the rails-app structure. I've looked into Guard and Watchr (doesn't work) now i am trying it with the ruby gem ...
0
votes
1answer
81 views
How to get folder changes notifications(folder watcher) in cocoa
I am new to Cocoa Application development. I want my application to be notified when any file under a given directory is modified(folder watcher). Modified means deleted, added, content of file is ...
0
votes
0answers
45 views
Cocoa, FSEvents, kFSEventStreamCreateFlagFileEvents flag and “renamed” events
I've been playing with FSEvents in a little application of mine to synchronize the content of my application with what's on the hard drive (basically, it's a little image viewer, and I want its ...
0
votes
1answer
138 views
Stream created with FSEventStreamCreate is nil
I want to create a simple event stream in order to listen events when some changes ocurre in a directory. The first step is the creation of the stream, but I receive an error in the creation using ...
0
votes
1answer
100 views
“gem install autotest-fsevent” -v 0.1.1 fails on snow leopard
Following Michael Hartl's Rails 2.3 tutorial. Excellent, so far, but I am stuck on the prep for the testing environment on page 87. Can't get the autotest-fsevent to install.
iMac i7 running Snow ...
0
votes
1answer
267 views
tracking file renaming/deleting with FSEvents on Lion
I'm trying to use FSEvents to detect when files were added/removed from a specific folder. For the moment, I implemented a simple wrapper around FSEvents, and it works fine : I get all the events.
...
0
votes
1answer
200 views
Monitoring a directory for changes in OSX without fsevent
Is there an alternative to fsevent or some kind of wrapper for it?
I'm trying to monitor a specific folder for changes to files with a certain extension.
0
votes
1answer
89 views
Changing the pathsToWatch in fsevents
I've set up a watcher mechanism using fsevents. The gist of it is every time a file is created in folder X, I want a function to run. It's running fine now, but I need to be able to change the path it ...
0
votes
0answers
27 views
FSEvents: faster event delivery for old events
I'm developing an app that manages a tree representing a large folder hierarchy. The app stores a cache of the directory when it quits, to prevent having to rescan the entire hierarchy on next load ...
0
votes
0answers
52 views
conflict between file sharing and file system monitoring on mac osx
We have a two-computer system where a process on a windows computer now and then drops a file into a remote directory shared on a mac. a program running on a mac is supposed to notice new file, do ...
0
votes
1answer
181 views
reloadData in NSTableView but keep current selection
I have anNSTableView showing the contents of a directory. I watch for FSEvents, and each time I get an event I reload my table view.
Unfortunately, the current selection then disappears. Is there a ...
0
votes
1answer
139 views
FSEvents and copying large files
I'm using FSEvents to monitor a directory of files that will have some large files copied into it. Currently FSEvents seems to be sending out a notification when I've begun copying the file, and again ...
0
votes
1answer
76 views
Question about multiple callbacks occurring at the same time
I have a thread watching for file system events on Mac OS X. If I copy 100 files into a folder that is being watched, I obviously get multiple file system events, and therefore multiple callback ...
0
votes
1answer
152 views
How to access fsevents to get the file system events?
Though i had read the fsevents article provided by apple developer site, i m having issues in receiving the events. I need some samples to fetch events.
Need some samples.
Thanks in advance.
rgds,
...
0
votes
1answer
557 views
Python 3.1.1 for OS X FSEvents
Am working on file / folder event capturing of OS X 10.5 and 10.6 versions. My application is developed using Python 3.1.1. Donno whether FSEvents are supported by Python 3.1.1.
If FSEvents are not ...
0
votes
1answer
100 views
What's the minimum version of OS X that supports File System Events?
I'd like to use FSEvents aka File System Events to listen to changes to the contents of a folder hierarchy. In my tests, File System Events does a superb job. However I can't find info as to whether ...
0
votes
5answers
1k views
NSTableView -setDataSource not working when triggered by FSEvents
So here's what I've got:
An NSTableView with an NSMutableArray data source
FSEvents monitoring a folder that contains the file that contains the data for the table view (Using SCEvents for ...
-1
votes
1answer
1k views
File Watcher in Cocoa
Hai all, I am developing an application in cocoa.I want to constantly check whether the contents of a file in a particular location is changed or not (like FileSystemWatcher in .NET).Please anyone ...