ios - 如何在我的应用程序的收件箱文件夹中删除导入的文件?
<p><p>如何删除我的应用程序功能中<code>Open in</code>导入的文件?
我注意到当我在我的应用程序中打开一些文件(如 PDF)时,我的应用程序大小会增加。看起来是这样,这些文件将被复制到我的应用程序中,我怎样才能找到并删除它们? </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我想通了!这些文件存储在名为“收件箱”的文档文件夹的子文件夹中。你需要在那里删除它们。代码如下:</p>
<pre><code> NSString *fileName = @"afile.png";
NSString *documentsDirectory = ;
NSString *inboxDirectory = ;
NSString *filePath = ;
NSError *error;
BOOL success = ;
if (!success) {
NSLog(@"error occured during removing the file");
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何在我的应用程序的收件箱文件夹中删除导入的文件?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/17601775/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/17601775/
</a>
</p>
页:
[1]