I'm trying to read files stored in assets folder and its subfolders using std::ifstream in an iOS app written mostly in C++ (The same code is also used in other, non-iOS projects), but they're not found. Example: there is a file assets/shaders/ortho2d.vert and I'm trying to load it like this:

std::ifstream vertFStream( vertFile ); // vertFile's contents is "assets/shaders/ortho2d.vert"
if (!vertFStream) {
    std::cerr << vertFile << " missing!" << std::endl;
    exit( 1 );
}

I've added the assets folder to the XCode project as a blue folder and it shows up in Targets->Copy Bundle Resources.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Try this:

NSBundle *b = [NSBundle mainBundle];
NSString *dir = [b resourcePath];
NSArray *parts = [NSArray arrayWithObjects:
                  dir, @"assets", @"shaders", @"ortho2d.vert", (void *)nil];
NSString *path = [NSString pathWithComponents:parts];
const char *cpath = [path fileSystemRepresentation];
std::string vertFile(cpath);
std::ifstream vertFStream(vertFile);
link|improve this answer
1  
What language is that? It's definitely not C++. – Ben Voigt Nov 30 '10 at 18:43
The language is Objective-C++, which allows you to freely mix Objective-C and C++ code. See Apple's "Using C++ with Objective-C" for more information. – Jeremy W. Sherman Dec 1 '10 at 1:52
Thanks! Works like a charm. – SurvivalMachine Dec 1 '10 at 18:01
feedback

You may need to check the relative path from where the application is running and probably use a full path to ensure the file is found.

The fact that the open failed does not necessarily mean the file is not found, it just might not be readable at this moment. (Incorrect permissions or file locked).

exit(1) is rather drastic.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.