1

我从 UIImagePickerController 保存了一个电影文件的路径,我知道它存在,因为我可以在设备上播放它。包含电影文件路径的字符串上的 NSLog 会返回:

file://localhost/private/var/mobile/Applications/E694555D-3959-4CC5-A829-4260323C2C65/tmp//trim.6JemAI.MOV

但是,当这样使用此字符串时,它会返回NO

NSLog(@"file exists: %i", [[NSFileManager defaultManager] fileExistsAtPath:media.movie]);

知道这是失败的吗?它是否与存储为路径的值有关,或者路径可能包含//在某一点上?这些只是我的一些想法。

4

1 回答 1

2

您需要将 URL 转换为文件路径。

NSURL *url = info[UIImagePickerControllerMediaURL];
NSString *path = [url path];
NSLog(@"file exists: %i", [[NSFileManager defaultManager] fileExistsAtPath:path]);

路径没有前导file://localhost

于 2013-03-18T16:08:30.360 回答