I am trying to set the type/creator codes as shown below, but this causes the finder flags and label to get messed up.
FSCatalogInfo catInfo;
FSGetCatalogInfo(&fileRef, kFSCatInfoFinderInfo, &catInfo, NULL, NULL, NULL);
FileInfo *info = (FileInfo*)catInfo.finderInfo;
info->fileCreator = 'ar12';
info->fileType = 'rsrc';
FSSetCatalogInfo(&fileRef, kFSCatInfoFinderInfo, &catInfo);
What am I doing wrong, and how should I be doing it?
Your code snippet works fine for me. Label and finder flags are not changed.
Code: