请告诉我如何在我的应用程序的临时目录中创建一个文本文件,如果它不存在。
请指导我,我没有正确的方式为此&尝试过去1小时。
对不起朋友,但我无法这样做。
答案 0 :(得分:0)
为了处理任何文件操作,请使用NSFileManager。对于你的情况
- (BOOL)fileExistsAtPath:(NSString *)path
- (BOOL)createFileAtPath:(NSString *)path contents:(NSData *)contents attributes:(NSDictionary *)attributes
如果您想了解详细信息,请参阅Documentaion