Tagged Questions

2
votes
1answer
48 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 fil …
0
votes
1answer
30 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 …
1
vote
1answer
40 views

SCEvents doesn’t work in some methods??

Hi, [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 …
1
vote
6answers
220 views

Equivalent of FileSystemWatcher (.NET) 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 . …
3
votes
5answers
3k 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 lik …
3
votes
3answers
542 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 rela …
0
votes
1answer
168 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: …
0
votes
1answer
199 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 .NE …
2
votes
2answers
275 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?
1
vote
5answers
386 views

how to watch FS for change

I'm doing a project in a course at my university on distributed systems. I'm planning on creating something similar to Dropbox ( getdropbox.com ), but with some sort of non-central …
0
votes
5answers
440 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 S …