I am trying to watch all sub-directories starting with my document package bundle on macOS, but I can only get NSMetadataQuery to report files in the immediate directory used for the scope. It does not do a recursive search.
I am trying to watch for a list of files and their download status contained within my file package (NSFileWrapper *) which is stored on iCloud Drive (or anywhere the local FS), but I can only get NSMetadataQuery to return the files directly in the directory passed as a scope. It doesn't do a recursive search.
Here is the only thing I could get working:
_query = [[NSMetadataQuery alloc] init];
NSString *root = [_DocRoot path];
[_query setSearchScopes:[NSArray arrayWithObject:root]];
[_query setPredicate:[NSPredicate predicateWithFormat:@"%K LIKE '*.fd'", NSMetadataItemFSNameKey]];
The following properly lists files in subdirectories on macOS and iOS when the search scope is an iCloud container, but returns nothing when run on an arbitrary folder on MacOS:
[NSPredicate predicateWithFormat:@"%K LIKE '*'", NSMetadataItemFSNameKey]
Does anyone know how to query for all files in a folder on the filesystem? The docs say to use "NSMetadataItemFSNameKey == *" but that throws an exception.
Thank you!
I don't know the direct answer to your question either. For this kind of issue, the best solution is often to submit a TSI (tech support incident, though I think it's called something different now) for your developer account, to get an Apple engineer to look at the problem.
However, I think Mr. Savage is correct in directing your attention away from NSMetadataQuery:
>> On macOS I don't think there is really any reason to use NSMetadataQuery for your document based app to detect changes inside your package though. You should be able to override the NSFilePresenter methods on your NSDocument subclass I think.
Using NSMetadataQuery seems like the wrong approach. For a start, the document might be on a volume or in a folder for which the user has disabled Spotlight, in which case the monitoring simply isn't going to work. If the monitoring app is also displaying the entire (in some sense) document, then coordinated access through NSFileCoordinator/NSFilePresenter seems like the correct approach, because it ensures the document is always presented in a consistent state.
Or, if your app (command line app, is how you described it) is simply waiting for changes to specific files in the document package individually, then monitoring the file system directly would be a more usual approach:
Maybe I misunderstand, but it seems to me that the app you're talking about is only going to deal with local document packages, and the packages are known explicitly. In that case, it does seem that you need file system monitoring, not Spotlight searching.