我在解析论坛和 stackoverflow 上的多个地方读到 PFFile 内容在下载后会保存到磁盘。他们在哪里得救?如何访问原始内容?
对于上下文,我使用的是 AVFoundation ,它不能与 NSData 或 NSInputStream 一起使用。现在我正在从解析中获取文件并将 NSData 的内容写入临时目录。
Best Answer-推荐答案 strong>
获取 PFFile 缓存位置的未经测试的尝试:
NSString *home = NSHomeDirectory();
NSString *library = [home stringByAppendingPathComponent"Library"];
NSString *docs = [library stringByAppendingPathComponent"rivate Documents"];
NSString *parse = [docs stringByAppendingPathComponent"arse"];
NSString *staging = [parse stringByAppendingPathComponent"FFileStaging"];
NSString *file = [staging stringByAppendingPathComponent:
[NSString stringWithFormat"%p_%@", pffileobj, pffileobj.name]];
关于ios - PFFile 在磁盘上的位置,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/24445006/
|