2

如何删除Open in我的应用功能导入的文件?我注意到当我在我的应用程序中打开一些文件(如 PDF)时,我的应用程序大小会增加。看起来是这样,这些文件将被复制到我的应用程序中,我怎样才能找到并删除它们?

4

3 回答 3

3

我想到了!这些文件存储在名为“收件箱”的文档文件夹的子文件夹中。你需要在那里删除它们。这是代码:

    NSString *fileName = @"afile.png";
    NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
    NSString *inboxDirectory = [documentsDirectory stringByAppendingPathComponent:@"Inbox"];
    NSString *filePath = [inboxDirectory stringByAppendingPathComponent:fileName];
    NSError *error;
    BOOL success = [fileManager removeItemAtPath:filePath error:&error];
    if (!success) {
       NSLog(@"error occured during removing the file");
    }
于 2013-07-12T10:34:44.917 回答
1

在我看来,手动搜索收件箱并不是一个很好的做法。如果我有文件发送到我的应用程序,我会在处理完它们后将它们删除,或者如果以后需要它们,我会将它们移动到缓存/临时目录以防止 iCloud 备份它们。

func application(application: UIApplication, openURL url: NSURL, sourceApplication: String?, annotation: AnyObject) -> Bool {
    processUrl(url)
    removeFileAt(url)

    return true
}
于 2016-01-26T12:31:28.880 回答
0

尝试启用 iTunes 文件共享 ( http://www.raywenderlich.com/1948/how-integrate-itunes-file-sharing-with-your-ios-app ),您可能会看到所有文件。

于 2013-07-11T22:11:11.960 回答