OStack程序员社区-中国程序员成长平台

标题: ios - 在 iOS 中,在纯 C 中,这是获取本地文件路径的方法吗? [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 05:20
标题: ios - 在 iOS 中,在纯 C 中,这是获取本地文件路径的方法吗?

我最终需要一个 cstring ... 作为包中文件的本地路径。

首先,

#include <CoreFoundation/CoreFoundation.h>

(这是纯 C 对吗?.. 你不能使用 Foundation)

然后

CFBundleRef mb = CFBundleGetMainBundle();
CFURLRef ur = CFBundleCopyResourceURL(mb, CFSTR("blah"), CFSTR("txt"), NULL);
CFStringRef imagePath = CFURLCopyFileSystemPath(ur, kCFURLPOSIXPathStyle);

CFStringEncoding encodingMethod = CFStringGetSystemEncoding();
const char *filename = CFStringGetCStringPtr(imagePath, encodingMethod);

printf( "\n we did it! .. %s \n", filename );

假设“blah.txt”在你的包中,它可以工作。

这是我知道的唯一方法 - 似乎很啰嗦。有什么关系?

  1. 我的代码是不是冗长、三色堇、可怜?

  2. 这是从文件名中获取 cstring 路径的正确和最佳习惯用法吗?

(注意我不希望将其设为 obj-c 或 obj-cpp 文件。纯 C。)



Best Answer-推荐答案


您的代码实际上不够长,并且有一些小错误:

所以你会这样做:

CFBundleRef mb = CFBundleGetMainBundle();
CFURLRef ur = CFBundleCopyResourceURL(mb, CFSTR("blah"), CFSTR("txt"), NULL);
CFStringRef imagePath = CFURLCopyFileSystemPath(ur, kCFURLPOSIXPathStyle);

// Now convert to a C-string
CFStringEncoding encoding = kCFStringEncodingUTF8;
CFIndex length = CFStringGetLength(imagePath);
CFIndex maxSize = CFStringGetMaximumSizeForEncoding(length, encoding);

char *filename = (char *)malloc(maxSize + 1); // +1 for \0

// Technically this can fail, but it really, really can't.
CFStringGetCString(imagePath, filename, maxSize, encoding);

printf( "\n we did it! .. %s \n", filename );

// Cleanup
free(filename); filename = NULL;
CFRelease(imagePath); imagePath = NULL;
CFRelease(ur); ur = NULL;

您可以找到 MYStringConversion功能有帮助。 MYCFStringCopyUTF8String 为您返回一个包含 cstring 的 malloc 缓冲区(即您需要 free 它)。 (这些来自 iOS 编程的第 10 章:挑战极限。)

关于字符串缓冲区的一个侧面说明。人们经常倾向于使用基于 PATH_MAX 的缓冲区。请记住,macOS 允许名称比 PATH_MAX 长得多的路径。我不知道对 macOS 路径字符串的长度有任何硬性限制。在实践中,很少有真正的路径超过 PATH_MAX,但是当你创建一个路径时,看看有多少软件中断是有趣的(实际上并不有趣)。

请注意,通常不需要此代码。在大多数 CoreFoundation 项目中,您只需直接使用 ur,这与使用原始 cstrings 相比非常好。

关于ios - 在 iOS 中,在纯 C 中,这是获取本地文件路径的方法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54099589/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4