URL is not only for the resource on the internet, there's a file URL. Typically, you generate a file URL in Cocoa as in
NSString* path= some path in the file system ;
NSURL* fileURL=[NSURL fileURLWithPath:path];
Then you can use the fileURL as you want!
Yuji
2009-12-29 03:54:48