ios - 删除下载到文档目录中的单个文件

时间:2013-01-14 21:54:56

标签: ios objective-c nsfilemanager nsdocument

首先=我道歉,因为我在here

之前已经尝试过一次

我真的很挣扎:

// Override to support editing the table view.
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{    
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        // Delete the row from the data source.


        [_mainTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    }

}

通过使用上面的代码,我知道可以从UITableView中显示的数组中删除条目。但是我想从我的文档目录中删除由用户下载并且不再需要的文件。

现在我在平均时间和更多搜索此代码之后:

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectoryPath = [paths objectAtIndex:0];

NSString *file = [[NSString alloc] init];

for(int i=0; i<[paths count]; i++)
{
    file = [documentsDirectoryPath stringByAppendingFormat:@"/%@",_fileArray];
    NSLog(@"%@", file);
}

NSFileManager *fileManager = [NSFileManager defaultManager];
[fileManager removeItemAtPath:file error:NULL];

允许我在控制台中列出阵列中的所有文件以及此代码:

- (void)removeFile:(NSString*)fileName {

    NSFileManager *fileManager = [NSFileManager defaultManager];

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);

    NSString *documentsDirectory = [paths objectAtIndex:0];

    NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.mp3", fileName]];

    [fileManager removeItemAtPath: fullPath error:NULL];

    NSLog(@"image removed");

}

与:[self removeFile: _filename];一起允许我删除特定文件。

所以我正在努力。 但是当用户能够刷卡并删除文件时,我真的很困。当然我不知道目录中会有什么文件。

其次 - 删除所有文件后如何处理能够加载tableView? 如果我使用此代码执行此操作:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
if ([paths count] > 0)
{
    NSLog(@"Path: %@", [paths objectAtIndex:0]);

    NSError *error = nil;
    NSFileManager *fileManager = [NSFileManager defaultManager];

    // Remove Documents directory and all the files
    BOOL deleted = [fileManager removeItemAtPath:[paths objectAtIndex:0] error:&error];


}

我收到了终止错误 - 我认为这是因为该目录也被删除了。

我知道这里有一些代码,但我真的希望有人指导我完成这个: - )

2 个答案:

答案 0 :(得分:1)

如果要删除Documents目录中的所选文件,请

首先,您必须从您的应用的Documents目录中获取所有文件

-(NSArray *)listFileAtPath:(NSString *)path
{
    NSArray *directoryContent = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:path error:NULL];
    return directoryContent;
}

然后使用上面函数中的return数组将文件显示到UITableView

NSArray *filesArray = [self listFileAtPath:documentDirectoryPath];

最后,当您删除所选文件时,您必须从Documents目录中删除该文件,并从filesArray删除该文件以管理UITableView这样的内容:

- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{    
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
        // Delete the row from the data source.
        [_mainTableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];

        // Remove file from document directory 
        NSError *error = nil;
        NSFileManager *fileManager = [NSFileManager defaultManager];
        BOOL deleted = [fileManager removeItemAtPath:[paths objectAtIndex:0] error:&error];

        // Remove file entry from filesArray
        [filesArray removeObjectAtIndex:indexPath.row];
    }
}

如果你想做这样的事情,希望会帮助你。

答案 1 :(得分:1)

如果我理解正确,你需要一步一步指导。 让我们考虑你有一个工作的UITableView(mainTableView)从NSMutableArray(mainArray)获取数据。

这将返回文档目录路径。

-(NSString*)filePath{
NSString *path=[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)lastObject];

NSLog(@"%@",path);
return path;
}

我们需要init数组,我在viewDidLoad上做了。

 - (void)viewDidLoad
{
    [super viewDidLoad];

    mainDataArray=[[NSMutableArray alloc]init];
    [self loadContentsOfDirectory:[self filePath]];
}

//here i am  adding names of files from documents directory
-(void)loadContentsOfDirectory:(NSString*)path
{
    NSError *error=nil;
    NSArray *pathArray=[[NSFileManager defaultManager]contentsOfDirectoryAtPath:path error:&error];

   if (error) {
       NSLog(@"ERROR: %@",error);
   }else{
       if (pathArray) {
           [mainDataArray removeAllObjects];
           [mainDataArray addObjectsFromArray:pathArray];
       }
   }
}

#pragma mark UITableView_Methods

//delete file then if file is deleted , remove filename from array and remove cell
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    if (editingStyle == UITableViewCellEditingStyleDelete)
    {
       NSString *fileName=[mainDataArray objectAtIndex:indexPath.row];

       NSError *error=nil;
       NSString *pathToDelete=[[self filePath]stringByAppendingPathComponent:fileName];
       BOOL succes=[[NSFileManager defaultManager]removeItemAtPath:pathToDelete error:&error];

       if (error) {
           NSLog(@"ERROR: %@",error);
       }

       // if file is succes deleted
       if (succes) {
           //remove this item from array 
           [mainDataArray removeObject:fileName];
           //and remove cell 
           [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationLeft];
       }else{
            UIAlertView *alertView=[[UIAlertView alloc]initWithTitle:@"Alert!" message:@"File can not be deleted" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];
           [alertView show];
       }
   }
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
   return [mainDataArray count];
 }

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *reusableCell=@"cell";

    UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:reusableCell];
    if (cell==nil) {
        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reusableCell];
    }
    cell.textLabel.text=[mainDataArray objectAtIndex:indexPath.row];

   return cell;
 }

我认为你的错误是你没有删除某些东西,可能是数组,对象在数组中。 希望这会有所帮助。