Search Results

2
votes

Getting a unique ID for a window of another application

The function HIWindowGetCGWindowID() can only return a CGWindowID for one of your app's windows, since a WindowRef from another program won't be valid in yours. The function CGWindowListCop …
1
vote

Mounting a folder as a device in Finder using Cocoa

Can I suggest rethinking this entirely? A symlink or alias would work, but, if possible, a better idea would be to register for the filetypes people will be moving into that folder, and then respo …
5
votes

How do I find the correct case of a filename?

Use FSPathMakeRef() on both paths, and then use FSCompareFSRefs() to see if they're the same file/folder. You can then use FSRefMakePath() to get the canonical representation, but if you're displa …
1
vote

Manual Core Data schema migration without “document changed” warning?

I haven't run across this particular situation, but I have a few guesses. First, instead of using -removeItemAtPath: and -moveItemAtPath: when you want to switch files, use the FSExchangeObjects() …