菜鸟教程小白 发表于 2022-12-12 23:24:18

ios - PFFile 在磁盘上的位置


                                            <p><p>我在解析论坛和 stackoverflow 上的多个地方读到 <code>PFFile</code> 内容在下载后会保存到磁盘。他们在哪里得救?如何访问原始内容?</p>

<p>对于上下文,我使用的是 <code>AVFoundation</code>,它不能与 <code>NSData</code> 或 <code>NSInputStream</code> 一起使用。现在我正在从解析中获取文件并将 <code>NSData</code> 的内容写入临时目录。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>获取 PFFile 缓存位置的未经测试的尝试:</p>

<pre><code>NSString *home = NSHomeDirectory();
NSString *library = ;
NSString *docs = ;
NSString *parse = ;
NSString *staging = ;
NSString *file = [staging stringByAppendingPathComponent:
      ];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - PFFile 在磁盘上的位置,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/24445006/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/24445006/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - PFFile 在磁盘上的位置