Tagged Questions

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 ...
6
votes
6answers
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 ...
3
votes
2answers
1k 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
0answers
33 views

FSEvents file flags are set regardless of event stream creation options

According to Apple documentation, in the callback to FSEvents, /* These flags are only set if you specified the FileEvents*/ /* flags when creating the stream.*/ ...
1
vote
0answers
315 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
953 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
1answer
186 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
150 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 ...