gpt4 book ai didi

iphone - 如何在 iPhone 上使用 fopen()?

转载 作者:太空狗 更新时间:2023-10-29 16:31:30 25 4
gpt4 key购买 nike

iPhone SDK 文档声称 fopen() 是受支持的文件访问方法,但我无法让它返回 FILE 句柄。我正在访问一个包含在我的项目中的目录。我试过 fopen "filename","dir/filename","./filename","./dir/filename","/dir/filename"都返回空指针。有些人报告说使用它没有问题,所以我相信它很简单!

最佳答案

只是为了清楚打开文件“some.txt”...

NSString * path = [[NSBundle mainBundle] pathForResource:  @"some" ofType: @"txt"];
FILE *f = fopen([path cStringUsingEncoding:1],"r");
if (f == NULL) NSLog([path stringByAppendingString:@" not found"]);

关于iphone - 如何在 iPhone 上使用 fopen()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/318341/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com