gpt4 book ai didi

objective-c - NSData dataWithContentOfFile 返回零?

转载 作者:塔克拉玛干 更新时间:2023-11-01 19:12:24 25 4
gpt4 key购买 nike

我有一个文件路径,我需要在NSData中获取该文件的数据。我正在使用:

NSError *err = nil;
NSData *d = [NSData dataWithContentsOfFile:file options:nil error:&err];

NSLog(@"error: %@", err);

错误是:

 Error Domain=NSCocoaErrorDomain Code=260 "The operation couldn’t be completed. (Cocoa error 260.)" UserInfo=0x34a8f0 {NSFilePath=file://localhost/var/mobile/Applications/A19223D4-0AEF-4677-8EDD-0D2CA9A7BB73/Documents/12-03-25%2022:10:48--cc.mp4, NSUnderlyingError=0x34a560 "The operation couldn’t be completed. No such file or directory"}

但是文件/目录确实存在,因为我正在播放视频文件并且它工作得很好:

MPMoviePlayerViewController *controller = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:[video filepath]]];
[self presentMoviePlayerViewControllerAnimated:controller];

出了什么问题?谢谢

最佳答案

您正在将字符串格式的 URL 传递给 dataWithContentsOfFile,您必须使用该文件的“文件路径”。

在这种情况下,您必须从字符串中删除“file://localhost”。如果文件存在,那应该可以。

关于objective-c - NSData dataWithContentOfFile 返回零?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9896068/

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