ど素人のAndroidアプリ開発入門
http://androidhacker.blog94.fc2.com/
http://androidhacker.blog94.fc2.com/
// ファイル名の指定 NSString* fileName = [[NSBundle mainBundle] pathForResource:@"hoge" ofType:@".dat"]; // NSInputStream NSInputStream* dataStream = [NSInputStream inputStreamWithFileAtPath:fileName]; if (dataStream == nil) { NSLog(@"failed"); } else { NSLog(@"good"); } // NSFileHandle NSFileHandle *fileHandle = [NSFileHandle fileHandleForReadingAtPath:fileName]; if (!fileHandle) { NSLog(@"failed"); } else { NSLog(@"good"); }