I have an old (OS9) file containing a resource fork with "CODE" resources and i would like to read that from Obj-C. I use something like:
NSFileHandle *codeFile=[NSFileHandle fileHandleForReadingAtPath:myPath];
but see only the data fork! Is there any simple solution for that?
I also tried to separate the resource fork with
"CpMac -r myFile newFile"
but get only the old file back?