Hi,
I'm trying to load files from a directory in my appbundle in iOS the simulator does this fine but the std::ifstream doesnt open on the iPad i use for testing.
Is this an issue with file access privileges or do i have to do something different,
Thanks, Jan
I'm trying to load files from a directory in my appbundle in iOS the simulator does this fine but the std::ifstream doesnt open on the iPad i use for testing.
Is this an issue with file access privileges or do i have to do something different,
Code:
std::ifstream is;
is.open(fileString.c_str(), std::ios::binary);
if (!is.is_open())
{
printf("FAIL");
}
Last edited by a moderator: