两个具有相同NSDate的声音文件?

时间:2012-09-11 06:18:30

标签: objective-c

我在我的应用中运行我的声音文件,并检查他们的修改日期, 我可以看到我得到4个具有相同日期和时间的文件(秒数!)。 怎么可能我有一些文件具有相同的修改时间 - 但是确切的时间。 (用户在应用程序中记录的声音)。

   for(int i=0;i<size+1;i++ )
        {

              NSString *path = [docsDir1 stringByAppendingPathComponent:[NSString stringWithFormat:@"sound%d.caf",[memoryInstnace getSoundsByOrderInArray][i]]];
            NSDictionary* fileAttribs = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:nil];
            NSDate *result = [fileAttribs fileModificationDate];
            [arrayOfDates addObject:result];
  1. arrayOfDates有4个相同的日期(!)
  2. 我知道它不是同一个文件的日期,因为我有声音文件列表,它们是不同的声音。 ([memoryInstnace getSoundsByOrderInArray][i]不同!)
  3. 我在这里做错了什么?

    非常感谢。

0 个答案:

没有答案