I want to convert /Users/Irwan/Documents/test.jpg into MyMac:Users:Irwan:Documents:test.jpg I can do that manually but I wonder if there is easy way to do it ?
thanks
I want to convert /Users/Irwan/Documents/test.jpg into MyMac:Users:Irwan:Documents:test.jpg I can do that manually but I wonder if there is easy way to do it ?
thanks
NSURL *url = [NSURL fileURLWithPath:path];
path = (NSString *)CFURLCopyFileSystemPath((CFURLRef)url, kCFURLHFSPathStyle);
[path autorelease];