如何使用C找到应用程序包(NSBundle)中文件的路径?

Chr*_*ick 7 c macos core-foundation nsbundle

是否有用于查找应用程序包中文件路径的C API?

我知道这可以在Objective-C中使用以下语法完成.

NSString *path = [[NSBundle mainBundle] pathForResource:@"MyImage" ofType:@"bmp"];
Run Code Online (Sandbox Code Playgroud)

我是否可以从C或C++代码调用相应的函数?

Chr*_*ick 9

Mike K指出正确的方向后,我能够使用以下代码检索应用程序包中文件的路径.

// Get a reference to the main bundle
CFBundleRef mainBundle = CFBundleGetMainBundle();

// Get a reference to the file's URL
CFURLRef imageURL = CFBundleCopyResourceURL(mainBundle, CFSTR("MyImage"), CFSTR("bmp"), NULL);

// Convert the URL reference into a string reference
CFStringRef imagePath = CFURLCopyFileSystemPath(imageURL, kCFURLPOSIXPathStyle);

// Get the system encoding method
CFStringEncoding encodingMethod = CFStringGetSystemEncoding();

// Convert the string reference into a C string
const char *path = CFStringGetCStringPtr(imagePath, encodingMethod);

fprintf(stderr, "File is located at %s\n", path);
Run Code Online (Sandbox Code Playgroud)

这似乎比它需要的时间长一点,但至少它有效!