我正在将一个 c++ 应用程序移植到 ios,我的应用程序需要访问一些外部文件。
关于ios app访问文件的两个问题:
代码只能访问“app bundle”中的文件?
我们可以使用 c++ 来访问这些文件吗?怎么样?
例如,我尝试使用
string cpp_function()
{
string line;
ifstream myfile ("example");
if (myfile.is_open()){
getline (myfile,line);
return line;
}
return "failed";
}
文件“example”与代码存在于同一文件夹中,但它总是返回“failed”。我的猜测:这个文件被复制到了 Resources 文件夹中,所以当我们在模拟器或设备上运行这段代码时,它们不再在同一个地方了?
你正在尝试的问题是你没有在这一行中包含完整的文件路径
ifstream myfile ("example");
我不太了解 C++,但我知道如果你想使用 C 标准库访问 iOS 中的文件,你必须这样做
NSString *filePath = [[NSBundle mainBundle] pathForResource"example" ofType""];
FILE *f = fopen(filePath.UTF8String, "r"); //works
FILE *f = fopen("example", "r"); //does not work
另请注意,您只能访问 您的 应用程序包中的文件。您可以尝试使用 Objective-C++ 并通过此方法获取您要查找的文件的路径
NSString *filePath = [[NSBundle mainBundle] pathForResource"example" ofType""];
std::string *path = new std::string([filePath UTF8String]);
ifstream myfile (path);
请注意,您可以读取,但不能写入应用程序包,但可以写入文档目录。
关于c++ - ios 应用程序使用 C++ 访问文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25394027/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |