The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
8 views

What does this FSEvent flag (KFSEventStreamEventFlagItemInodeMetaMod) mean (Mac OS X)?

When the flag will be set? KFSEventStreamEventFlagItemInodeMetaMod = 0x00000400 Thanks!
0
votes
0answers
17 views

How to know the users uid and gid who is modifying the file in fsevents

I am using fsevent to capture the file system events.Suppose i am monitoring the / ,i need to know the users uid and gid because of whom event is generated.(say a file is modified under / ,which user ...
4
votes
1answer
76 views

Reading File System Events from Linux Kernel without Inotify

In Linux to read File System Events, most of us use Inotify which is really a Good One. But it has it's limitations. I have to keep track of all the directories i have to watch and get a inotify ...
2
votes
1answer
84 views

NSRunLoop returns early, before any FSEvent or timer fires

I'm trying to use a NSRunLoop to watch for FSEvents in an Agent application (that is, without any GUI). I think I understand how a RunLoop works, but I clearly don't, because the behaviour I'm seeing ...
0
votes
1answer
41 views

fsevents command line

I have written an objective-c class for watching a particular folder using FSEventStreamCreate(). This class work as expected when I am using it in GUI based application. Now I am trying to write a ...
1
vote
1answer
73 views

Use FSEvents in sandboxed app

I'm trying to use FSEvents in my sandboxed app to monitor some directories. I implemented the following class: @implementation SNTracker - (id)initWithPaths:(NSArray *)paths { self=[super init]; ...
1
vote
1answer
143 views

FSEvents - find out what was changed in the target directory

I just set up an FSEvent in order to monitor the state of a target folder. It works just fine, because I am notified every time a change takes place and I am also given the path to the subdirectory ...
0
votes
1answer
69 views

Cocoa File-/Directory Watch Library available?

I know that there is the FSEvents Api and some Spotlight API to create a File- / Directory Watcher. I also know that there are some ObjC wrappers for FSEvents like CDEvents but is there anywhere a ...
2
votes
1answer
87 views

File System Events API causing Finder to lock up?

I'm using Apple's File System Events API to monitor a directory hierarchy. I'm essentially using the example from Apple's documentation verbatim, so I won't post my code unless somebody asks for it. ...
0
votes
1answer
118 views

Is there a definitive list of FSEvents event flags?

I've been searching but cannot find a definitive list. I'm logging certain events and I'm not sure what they are - would be very useful to have a lookup table to be able to see more clearly what's ...
0
votes
1answer
95 views

FSEventStream: What does the kFSEventStreamCreateFlagIgnoreSelf flag do?

I am monitoring file system changes in a specific directory using the OSX FSEventStream. I was looking at the documentation here and I found an interesting flag described, ...
2
votes
0answers
183 views

OSX FSEvent API and tracking multiple rename events

There is a discussion that contiguous FSEventStreamEventId can be used to detect the old and new names for kFSEventStreamEventFlagItemRenamed events. This does appear to work in my testing of a basic ...
0
votes
0answers
71 views

Drop box like app in IOS

I am planning to develop a drop box like app in ios. I need to back up pics, video and music. Also I need to constantly monitor them, and if some change happens I need to update in cloud. Should I ...
1
vote
1answer
153 views

OSX RoR Guard failing to auto run on file updates for certain files

I'm absolutely baffled.. (And quite frustrated too.. ) For some reason guard isn't detecting file updates on osx, but only for certain files. It's almost like the regexp defined in the watch ...
4
votes
1answer
115 views

FSEvents in MacRuby: wrong callback is executed

I'm working on GUI app in MacRuby and I need to use FSEvents. I'm registering a couple of streams for different directories. Changes in any of those directories result in running a callback, but ...
1
vote
2answers
224 views

Is it possible to get the filename from an FSEvent id?

I've created a simple filesystem watcher in C++ using the mac File System Events API as documented here: apple developer doc. My question is in the title. How do I get the path of the thing that was ...
0
votes
1answer
332 views

fslogger : ioctl error : Bad Address

I'm using this fslogger.c to get File System Notifications in my Mac. But it works only in Leopard & SnowLeopard, not in Lion or Mountain Lion. ...
0
votes
0answers
34 views

Can DEV_FSEVENTS be cloned more than 5 in MACOSX

Requirements : I have to monitor certain mount points,and capture the fsevents in the path. For understanding i used the cpp code in the location ...
0
votes
1answer
245 views

fsevents-daemon vs FSEvents API

I was checking apple Developer Documentation about FSEvents , but later in dropbox forums, i found this https://forums.dropbox.com/topic.php?id=20771, " I believe one would not use fsevents-daemon ...
0
votes
1answer
126 views

Do i need Administrator privileges to Monitor files in Mac using FSEvents

I'm trying to get the File System Event notifications in Mac for my Application. When i was googling about FSEvents, noticed Dropbox is also using FSEvents and it's asking for administrator privileges ...
2
votes
2answers
928 views

Can't get rb-fsevent gem working on OSX

I was running Test::Unit with Guard and am trying to switch over to RSpec. I'm running Mac OSX and can't seem to get rb-fsevent working. When I start Guard I get a message "[Listen warning]: Listen ...
2
votes
1answer
96 views

FSEvents treatment of disk changed by other OS

I'm seeing strange behavior on FSEvents where I mount my drive in recovery mode and on reboot get zero fsevents in my stream. I do the following: Boot regularly Record current event with ...
3
votes
1answer
618 views

FSEvents C++ Example

I need to create FSEvents watcher for a Folder in Mac. I'm comfortable with C++ and is there a way to get FSEvents notifications in C++ code, rather than Objective-C. Is there some example code to ...
6
votes
2answers
923 views

Watch directory for file changes

I want to monitor a directory (of thousands of files, with about 5 levels of sub directories) for when files are changed. I know I can use the FSEvents API to monitor a directory for when files change ...
1
vote
1answer
528 views

Check which files have changed in Mac::FSEvents in Perl?

Is it possible to see which files have been changed whenever an change-event is called using: http://search.cpan.org/~rhoelz/Mac-FSEvents-0.08/ ? Thanks a lot! :)
1
vote
2answers
2k views

Dropbox DIY to sync with your server: rsync + FSEvents/inotify/anything else?

To make a long story short, I need to build a simple dropbox clone to sync files with my server. I did my homework, I did lots of research, but none of the solutions I found (both code and already ...
1
vote
1answer
274 views

Sending an instance Callback as a function pointer results in “this” being “null” in C#

I'm working on writing a FileSystemWatcher using Mono but for some reason the callback i send to the FSEvents library isn't mantaining the this reference, it is always null inside the callback even ...
1
vote
1answer
257 views

Why does lsyncd require xnu?

I am working through the steps of compiling lsyncd on Mac OS X (10.7.3 to be exact). Finally managed to it get it compiled despite a couple minor syntax errors in the lysncd source code; and I ...
2
votes
1answer
598 views

Watchdog (osx) not notifying on remote network changes

I'm using Watchdog to monitor a network directory, non-recursive, for a specific pattern of files to be created over time. The issue I am seeing is that while it works fantastic when I test locally, ...
4
votes
1answer
957 views

Unable to install autotest-fsevent gem with Xcode 4.3

I've been unable to install the autotest-fsevent gem after updating to Xcode 4.3 (removed old versions of Xcode). Command line tools were installed via Preferences > Downloads > Components tab. osx ...
4
votes
0answers
418 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.*/ ...
0
votes
2answers
167 views

How to determine if a file copy is completed using cocoa

I am developing folder watcher application for MAC in XCode using Foundation framework and FSEvents API. I need to know whether the file has been completely copied to the destination before I open the ...
1
vote
2answers
1k 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 ...
1
vote
1answer
525 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 ...
2
votes
0answers
260 views

Mac OS X How do I programatically detect if a changed file is still being 'used' by the same process that changed it?

I'm investigating a problem with a utility we've developed. We track a file or a directory and when a change has been made we upload the new version to a central repository. Our utility is similar ...
0
votes
1answer
772 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 ...
8
votes
2answers
538 views

Writing a file with vim doesn't fire a file change event on OS X

I am using watchdog to monitor .less file change events on OS X. If I change the contents of a .less file with TextMate or Sublime Text the modification event is captured. However, if I edit the ...
0
votes
1answer
241 views

“gem install autotest-fsevent” -v 0.1.1 fails on snow leopard

Following Michael Hartl's Rails 2.3 tutorial. Excellent, so far, but I am stuck on the prep for the testing environment on page 87. Can't get the autotest-fsevent to install. iMac i7 running Snow ...
2
votes
1answer
513 views

Declaring callback function inside FSEventStreamCreate

There are a couple examples of using an FSEvent to listen for changes in the file system. How to listen for file system changes MAC - kFSEventStreamCreateFlagWatchRoot and FSEvents weirdness on OS ...
3
votes
3answers
2k views

Guard doesn't see file updates

I'm developing a custom engine using this setup. I've created the engine with rails plugin new MyEngine --full Then I've added rspec-rails and guard-rspec as development dependencies with ...
4
votes
1answer
1k views

tracking file renaming/deleting with FSEvents on Lion

I'm trying to use FSEvents to detect when files were added/removed from a specific folder. For the moment, I implemented a simple wrapper around FSEvents, and it works fine : I get all the events. ...
0
votes
1answer
860 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
346 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 ...
2
votes
0answers
340 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 ...
3
votes
2answers
842 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 ...
4
votes
1answer
492 views

Is there a good objc library wrapper for File System Events/kqueue that handles recursive watching for me?

I want to write an OSX (Snow Leopard) app that receives notifications when files within a specific directory are changed, and I want access to the path of the specific file that was changed. I know I ...
4
votes
1answer
1k 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
0answers
517 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 ...
2
votes
1answer
329 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 ...
7
votes
3answers
2k views

RVM, FSEvents, and CarbonCore on OS X

I'm setting up a project that uses SASS, which uses FSEvents to keep from polling the disk. It seems that this doesn't play nice with RVM, however. That means that when I run sass --watch I get this ...

1 2