如何删除我的应用程序功能中Open in
导入的文件?
我注意到当我在我的应用程序中打开一些文件(如 PDF)时,我的应用程序大小会增加。看起来是这样,这些文件将被复制到我的应用程序中,我怎样才能找到并删除它们?
我想通了!这些文件存储在名为“收件箱”的文档文件夹的子文件夹中。你需要在那里删除它们。代码如下:
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");
}
关于ios - 如何在我的应用程序的收件箱文件夹中删除导入的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17601775/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (http://ogeek.cn/) | Powered by Discuz! X3.4 |