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 expected it to. For example: if I copy a file created in 2009 and paste it into a new directory it retains the created and modified date of the original file.

To put the issue in context, I'm monitoring filesystem events using the FSEvents API. This alerts me that a change has occurred at the directory level. To detect which file has changed within that particular directory, I iterate through each file and check its modification date. This works fine for newly created files, but not for files which have been copied from elsewhere on the filesystem.

Is there a low-level API that I can access for more information on a particular file? If not, what's the best way to determine specific filesystem changes on the file level?

link|improve this question

This answer stackoverflow.com/a/6931995/107980 says it can be retrieved from Spotlight's metadata. – bunnyhero Feb 27 at 20:47
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.