0

**大家好,我的应用程序的快照正在记录在 Cache/Snapshots 文件夹中。由于安全问题,我只是不需要记录这些快照。我在下面使用了这段代码,我从网上得到了这个来删除保存的快照:

- (void)applicationDidEnterBackground:(UIApplication *)application {
UIApplication* app = [UIApplication sharedApplication];
    UIBackgroundTaskIdentifier __block bgTask;
    bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
        [app endBackgroundTask:bgTask];
        bgTask = UIBackgroundTaskInvalid;
    }];

    if(UIBackgroundTaskInvalid != bgTask) {
        // Start the long-running task to kill app after some secs and return immediately.
        dispatch_after( dispatch_time(DISPATCH_TIME_NOW, KILL_IN_BACKGROUND_AFTER_SECS * 1e09), 
                       dispatch_get_main_queue(), ^{
                           if(goingToQuit) exit(0);
                           [app endBackgroundTask: bgTask];
                       });
    }
}
- (void)applicationWillEnterForeground:(UIApplication *)application
{
    // cancel ongoing background suicide.
    goingToQuit = NO;

}

我不想记录这些快照,请对此提出建议。**

4

1 回答 1

0

我认为您没有添加代码来删除文件:(请参考我的代码片段

- (void) deleteFiles {
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        [self beingBackgroundUpdateTask];
        NSError *error = nil;
        // dirPath is path to your snapshot directory 
        NSArray *directoryContents = [fileMgr contentsOfDirectoryAtPath:dirPath error:&error];
        if (error == nil) {
            for (NSString *path in directoryContents) {
                 NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:path];
                 BOOL removeSuccess = [fileMgr removeItemAtPath:fullPath error:&error];
                 if (!removeSuccess) {
                     // Error handling
                     ...
                 }
            }
        } else {
            // Error handling
        }

        // Do something with the result 
       [self endBackgroundUpdateTask];
    });
}
- (void) beingBackgroundUpdateTask {
    self.backgroundUpdateTask = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{
        [self endBackgroundUpdateTask];
    }];
}

- (void) endBackgroundUpdateTask {
    [[UIApplication sharedApplication] endBackgroundTask: self.backgroundUpdateTask];
    self.backgroundUpdateTask = UIBackgroundTaskInvalid;
}
于 2012-10-08T06:14:14.100 回答