Clifton Labrum
Clifton Labrum

Reputation: 14168

Detect Which Files Changed with Dropbox Sync API

I am detecting file changes via the Dropbox Sync API (iOS) like this:

[[DBFilesystem sharedFilesystem] addObserver:self forPathAndDescendants:[DBPath root] block:^() {
    NSLog(@"File(s) changed!");
}];

This is all fine and good, but I need to know which files changed. How can I make this block return the filenames of the changed files?

Thanks!

Upvotes: 1

Views: 383

Answers (1)

user94559
user94559

Reputation: 60153

There isn't any support for this, but we've definitely heard this feature request before.

Upvotes: 2

Related Questions