0

首先,这与古代技术有关。我正在开发的程序端口在 Metrowerks Codewarrior 9 中维护,目标是 PPC。

用于 MSL C 的 FSRefParentAndFilename_fopen 函数

FILE * FSRefParentAndFilename_fopen(
const FSRefPtr theParentRef,
ConstHFSUniStr255Param theName,
const char *open_mode);

我需要一个 ConstHFSUniStr255Param,它是指向 HFSUniStr255 的指针。我有一个包含我的文件名的 CFString,我的问题是如何转换为 HFSUniStr255?

struct HFSUniStr255 {
UInt16 length;
UniChar unicode[255];
};

到目前为止,我有:

HFSUniStr255 HFSString;
FSGetDataForkName(&HFSString);
HFSString.length=(uint16)CFStringGetLength(fileName);
HFSString.unicode=?
4

1 回答 1

1

您可以使用以下代码段:

HFSString.length=(uint16)CFStringGetLength(fileName);
CFStringGetCharacters(filename, CFRangeMake(0, CFStringGetLength(filename)), HFSString.unicode);

但请确保您的文件名有效,尤其是其长度小于 255 个 Unicode 字符。否则,您将不得不面对缓冲区溢出的后果。

于 2014-09-14T14:49:44.590 回答