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 changed. I tried using FSEvents also with using NSWorkspace's notification center or delegate messages as in UKKQueue at http://www.zathras.de/angelweb/sourcecode.htm#UKKQueue. My application got notification when any file under directory is modified. But the problem is that its not giving name or path of specific file which is modified. It gives path of directory but not path of specific file.

Any idea how can I watch folder for modification in specific file??

link|improve this question

45% accept rate
possible duplicate of Observe a File or Folder in Objective-C – Rob Keniger Dec 20 '11 at 2:51
kqueues will monitor changes in individual files but you must set up the monitoring for each file yourself. UKKQueue doesn't work too well for this out of the box as it only allows a single delegate. – Rob Keniger Dec 20 '11 at 2:53
Is there any other method by which I can watch folder as my requirement?? – Amrinder Singh Dec 21 '11 at 10:18
feedback

1 Answer

up vote 3 down vote accepted

You have to write code to keep track of the contents of the folder and then whenever you receive an FSEvent notification that the folder contents have changed, you need to compare your stored information about the folder contents with the actual, current contents.

This could be something as simple as a mutable array ivar named something like folderContents, which contains a set of file attributes dictionaries. You could use the dictionary returned from the -attributesOfItemAtPath:error: method of NSFileManager or a subset of it.

All you'd need to do when you receive a folder notification is iterate through the stored dictionaries and check to see whether any files have been added, removed or modified. The NSFileManager attributes dictionary contains all the info you need to do this.

You'd then need to update your stored information about the folder with the updated information.

link|improve this answer
Can you provide me example code for this because as I told I'm new to Cocoa Application development. – Amrinder Singh Dec 22 '11 at 12:01
feedback

Your Answer

 
or
required, but never shown

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