全局,相对路径都不行,
在沙盒中获取也不行
- //在沙盒中获取Documents的完整路径
- NSString * path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
- //得到path下test文件的路径
- NSString * filePath = [path stringByAppendingPathComponent:@"test"];
- //判断test文件是否存在
- NSFileManager * fm = [NSFileManager defaultManager];
- if ([fm fileExistsAtPath:filePath]) {
- NSLog(@"test文件存在");
- }else{
- NSLog(@"test文件不存在");
- }
使用bundle
NSBundle *mainBundle = [NSBundle mainBundle]; NSString *imagePath = [mainBundle pathForResource:@"abc" ofType:@"png"];
在build PHASE 的copy bundle resource中将要播放的文件添加