Tagged Questions

2
votes
3answers
2k views

How to listen for file system changes MAC - kFSEventStreamCreateFlagWatchRoot

I am listening for Directory and disk changes in a COCOA project using FSEvents. I need to get events when a root folder is renamed or deleted. So, I passed kFSEventStreamCreateFlagWatchRoot while ...
2
votes
7answers
1k views

Equivalent of FileSystemWatcher (.NET) in Cocoa

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 .NET). Please anyone give me a ...
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
116 views

FSEvents mysteriously fails to deliver events in some folders

this is killing me, and I'm not sure I know how to approach debugging it. I'm using Mac FSEvents API to monitor a given folder on the file system. However, occasionally, some folders stop sending any ...
1
vote
1answer
384 views

Is it possible to use FSEvents to get notifications that a folder has been moved?

I'm using the FSEvents API to get notifications of changes in a local directory that I'm tracking. Is it possible to get a notification that the watched directory has been moved to another location ...
1
vote
1answer
190 views

Obj-C: FSEvent Reports the Same Event Upon Each Launch of the App

I setup a FSEvent that runs well but it keeps reporting the same event each time I launch the app. Ex: My FSEvent monitor directory is: Test/ ...and there are three files: test1, test2, test3 ...
1
vote
1answer
188 views

SCEvents doesn't work in some methods?

[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 wrapper around Mac OS ...
0
votes
1answer
166 views

How to get folder changes notifications(folder watcher) in cocoa

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 ...
0
votes
0answers
62 views

Cocoa, FSEvents, kFSEventStreamCreateFlagFileEvents flag and “renamed” events

I've been playing with FSEvents in a little application of mine to synchronize the content of my application with what's on the hard drive (basically, it's a little image viewer, and I want its ...
0
votes
1answer
234 views

Monitoring a directory for changes in OSX without fsevent

Is there an alternative to fsevent or some kind of wrapper for it? I'm trying to monitor a specific folder for changes to files with a certain extension.
0
votes
1answer
98 views

Changing the pathsToWatch in fsevents

I've set up a watcher mechanism using fsevents. The gist of it is every time a file is created in folder X, I want a function to run. It's running fine now, but I need to be able to change the path it ...
0
votes
1answer
205 views

reloadData in NSTableView but keep current selection

I have anNSTableView showing the contents of a directory. I watch for FSEvents, and each time I get an event I reload my table view. Unfortunately, the current selection then disappears. Is there a ...
0
votes
5answers
1k 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 SCEvents for ...
-1
votes
1answer
1k 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 .NET).Please anyone ...