When a new document is made and edited the user gets a stock save panel to choose where to save it.
The trouble is that even with read/write access to the file system in the entitlements file as my app is core-data based saving the doc anywhere outside the apps sandbox container drives the auto-save / versions mechanism into break land.
The question is, how do I either force the doc to save into the sandbox docs folder only by providing a minimal save panel or send the save panel to the sandbox folder directly.
I have tried implementing this...
- (BOOL)prepareSavePanel:(NSSavePanel *)savePanel
{
NSLog(@"homeis %@",[NSApplication applicationDocumentsDirectory]);
NSURL *home = [NSURL fileURLWithPath:[NSApplication applicationDocumentsDirectory]];
[savePanel setDirectoryURL:home];
return YES;
}
Which logs me
homeis /Users/warrenburton/Library/Containers/com.mycompany.myapp/Data/Documents
Yet the save panel always drops me into the User home documents directory (/Users/warrenburton/Documents).
I know the call is influencing the save panel as the initial directory changes if I change the input to setDirectory
/Users/warrenburton/Library/Containers/com.mycompany.myapp/Data
resolves to /Users/warrenburton
but i can't force it to jump into the sandbox area.