Re: How do I get a file reference w/o relying on the path?
Re: How do I get a file reference w/o relying on the path?
- Subject: Re: How do I get a file reference w/o relying on the path?
- From: Noah Desch <email@hidden>
- Date: Sun, 18 Apr 2010 22:43:01 -0400
Are you sure the data is being stored into your "note" dictionary correctly? Here is my bookmark resolution code, it looks almost exactly like yours. I'm running on 10.6.3 and building for 10.6 with GC off.
- (NSURL *)resolveBookmarkData:(NSData *)bookmark withOptions:(NSURLBookmarkResolutionOptions)options needsUpdate:(BOOL *)stale
{
NSURL *url;
NSError *error;
NSMutableDictionary *userInfo;
error = Nil;
*stale = NO;
url = [NSURL URLByResolvingBookmarkData:bookmark options:options relativeToURL:Nil bookmarkDataIsStale:stale error:&error];
if ( url ) {
return url;
}
if ( error && [[error domain] isEqualTo:NSCocoaErrorDomain] && [error code] == NSFileNoSuchFileError ) {
// error presentation and resolution code follows...
-Noah
On Apr 18, 2010, at 10:08 PM, Brad Stone wrote:
> The error comes back "file does not exist" and the NSLog statement shows "url = (null)" after I change the name of the file in the Finder. If I change the file name back to what it was when the bookmark was saved the file opens fine. I changed my creation option to 0. No difference.
>
> NSData *bookmarkData = [note valueForKey:@"bookmarkData"];
> NSError *error = nil;
> BOOL isStale;
> NSURL *url = [NSURL URLByResolvingBookmarkData:bookmarkData options:0 relativeToURL:nil bookmarkDataIsStale:&isStale error:&error];
> NSLog(@"url = %@", [url description]);
>
> if (error != nil) {
> [NSApp presentError:error];
> }
>
>
> On Apr 18, 2010, at 11:45 AM, Noah Desch wrote:
>
>>
>> On Apr 18, 2010, at 10:43 AM, Brad Stone wrote:
>>
>>> I'm storing the bookmark data in an array displayed in a table:
>>> NSData *bookmarkData = [inAbsoluteURL bookmarkDataWithOptions:NSURLBookmarkCreationSuitableForBookmarkFile
>>> includingResourceValuesForKeys:nil
>>> relativeToURL:nil
>>> error:&error];
>>
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden