Re: API Path Question
Re: API Path Question
- Subject: Re: API Path Question
- From: Nick Zitzmann <email@hidden>
- Date: Mon, 12 Jun 2006 12:41:16 -0600
On Jun 12, 2006, at 8:22 AM, Jerrod Fowkes wrote:
NSString* theURL = @"/Users/useronfilesystem/documents/u i.yui";
CFStringRef escapedURL = nil;
escapedURL = CFURLCreateStringByAddingPercentEscapes
(kCFAllocatorDefault,
(CFStringRef)theURL, NULL, NULL, kCFStringEncodingUTF8);
CFURLRef anURL = nil;
anURL = CFURLCreateWithString(NULL, escapedURL, NULL);
CFStringRef filePath = nil;
filePath = CFURLCopyFileSystemPath(anURL, kCFURLHFSPathStyle);
I think you're making this too difficult. Try something like this
instead:
NSURL *theURL = [NSURL fileURLWithPath:@"/Users/useronfilesystem/
documents/u i.yui"];
NSString *filePath = (NSString *)CFURLCopyFileSystemPath((CFURLRef)
theURL, kCFURLHFSPathStyle);
// do stuff here...
[filePath release];
Nick Zitzmann
<http://www.chronosnet.com/>
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden