In Windows OS, MS provides ReadDirectoryChangesW and FindFirstChangeNotification API to dectect new or modified file, does the Mac OSX provide equal function as well?

link|improve this question

70% accept rate
feedback

3 Answers

up vote 5 down vote accepted

In Mac OS X Leopard monitor file changes with the File System Events API

link|improve this answer
I found the API can work only with 10.5 or above, how to support 10.3 and 10.4? Thanks in advance. – Yigang Wu Mar 17 '09 at 12:59
1  
This is why I wrote Mac OS X "Leopard" (10.5) as older Mac OS versions may require ugly hacks if they don't have this new feature. From May 2005, under 10.4: osxbook.com/software/fslogger – Mark Stock Mar 18 '09 at 0:30
feedback

OS X provides a framework called FSEvents, I don't know much about the specifics of it though.

link|improve this answer
feedback

See http://pypi.python.org/pypi/MacFSEvents/0.2.1 for a Python implementation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.