1

我是 iPhone 新手,

我制作了一个应用程序,我正在下载一本书并将其存储在一个名为book1Folderwhich is inside的文件夹中Document directory

现在我想要数组中所有书籍的名称,a 中有 2 本书,book1Folder但是当我编写此代码时,它显示数组计数为 3。

这是我的代码片段,

-(void)viewWillAppear:(BOOL)animated{
    NSString *files;
    NSString *Dir=[self applicationDocumentsDirectory];
    Dir=[Dir stringByAppendingPathComponent:@"book1Folder"];

    NSDirectoryEnumerator *direnum = [[NSFileManager defaultManager] enumeratorAtPath:Dir];

    Downloadedepubs = [[NSMutableArray alloc]init];
    while(files = [direnum nextObject])
    {
        if([[files pathExtension] isEqualToString:@"epub"])
            NSLog(@"files=%@",files);
            [Downloadedepubs addObject:files];
    }
}

我的日志仅显示 2 本书的名称,但是当我遍历数组时,它包含 3 个对象。

[Downloadedepubs ObjectAtIndex:0]=.DS_Store;
[Downloadedepubs ObjectAtIndex:1]=abcd;
[Downloadedepubs ObjectAtIndex:2]=pqrs;

那是什么.DS_Store原因呢?

任何帮助将不胜感激。

4

3 回答 3

3

把你的 if 块放在大括号里。它只影响 if 之后的第一行。

如下所示;

if([[files pathExtension] isEqualToString:@"epub"]) {
            NSLog(@"files=%@",files);
            [Downloadedepubs addObject:files];
}
于 2012-07-25T09:22:14.163 回答
0

.DS_Store 是 mac 中的隐藏文件,用于将文件消息存储在文件夹中。您可以将其删除

于 2012-07-25T09:21:18.880 回答
0

试试这个:

  NSDirectoryEnumerator*    e = [[NSFileManager defaultManager] enumeratorAtPath:yourPathhere];

// Ignore any files except XYZ.epub
for (NSString*  file in e)
{
    if (NSOrderedSame == [[file pathExtension] caseInsensitiveCompare:@"epub"])
    {
           // Do something with file.epub
               [Downloadedepubs addObject:files];

    }
    else if ([[[e fileAttributes] fileType] isEqualToString:NSFileTypeDirectory])
    {
        // Ignore any subdirectories
        [e skipDescendents];
    }
}
于 2012-07-25T09:25:17.970 回答