Как отсортировать файлы по дате изменения в iOS - PullRequest
6 голосов
/ 15 июня 2011

Я использовал NSFileManager для извлечения файлов в папке, и я хочу отсортировать их по дате изменения. Как это сделать?

Спасибо.

Ответы [ 5 ]

9 голосов
/ 15 июня 2011

Что вы пробовали до сих пор?

Я этого не делал, но быстрый взгляд на документы заставляет меня подумать, что вам следует попробовать следующее:

  1. Позвонить-contentsOfDirectoryAtURL:includingPropertiesForKeys:options:error: и укажите NSURLContentModificationDateKey в качестве одного из ключей.
  2. Вы вернете массив объектов NSURL, которые затем сможете отсортировать с помощью метода NSArray, например -sortedArrayUsingComparator:.
  3. Передайте блок сравнения, который ищет дату модификации для каждого NSURL, используя -getResourceValue:forKey:error:.

Обновление: Когда я писал ответ выше, -getResourceValue:forKey:error: существовал в iOS, ноничего не делалЭтот метод теперь работает с iOS 5. Следующий код будет регистрировать файлы ресурсов приложения, а затем список соответствующих дат модификации:

NSFileManager *manager = [NSFileManager defaultManager];
NSArray *files = [manager contentsOfDirectoryAtURL:[[NSBundle mainBundle] resourceURL]
                        includingPropertiesForKeys:[NSArray arrayWithObject:NSURLContentModificationDateKey]
                                           options:nil
                                             error:nil];
NSMutableArray *dates = [NSMutableArray array];
for (NSURL *f in files) {
    NSDate *d = nil;
    if ([f getResourceValue:&d forKey:NSURLContentModificationDateKey error:nil]) {
        [dates addObject:d];
    }
}
NSLog(@"Files: %@", files);
NSLog(@"Dates: %@", dates);
2 голосов
/ 26 ноября 2013
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSFileManager *manager = [NSFileManager defaultManager];
    NSArray *imageFilenames = [manager contentsOfDirectoryAtPath:documentsDirectory error:nil];
    NSMutableArray *originalImage = [[NSMutableArray alloc]init];

    for (int i = 1; i < [imageFilenames count]; i++)
    {
        NSString *imageName = [NSString stringWithFormat:@"%@/%@",documentsDirectory,[imageFilenames objectAtIndex:i] ];

    }

    //---------sorting image by date modified
    NSArray*  filelist_date_sorted;

    filelist_date_sorted = [imageFilenames sortedArrayUsingComparator:^NSComparisonResult(id obj1, id obj2)
                            {
                                NSDictionary* first_properties  = [[NSFileManager defaultManager] attributesOfItemAtPath:[NSString stringWithFormat:@"%@/%@", documentsDirectory, obj1] error:nil];
                                NSDate *first = [first_properties  objectForKey:NSFileCreationDate];
                                NSDictionary *second_properties = [[NSFileManager defaultManager] attributesOfItemAtPath:[NSString stringWithFormat:@"%@/%@", documentsDirectory, obj2] error:nil];
                                NSDate *second = [second_properties objectForKey:NSFileCreationDate];
                                return [second compare:first];
                            }];

NSLog(@" Date sorted result is %@",filelist_date_sorted);
2 голосов
/ 23 июня 2011
static static NSInteger contentsOfDirSort(NSString *left, NSString *right, void *ptr) {

    (void)ptr;

    struct stat finfo_l, r_finfo_r;

    if(-1 == stat([left UTF8String], &finfo_l))
        return NSOrderedSame;

    if(-1 == stat([right UTF8String], &finfo_r))
        return NSOrderedSame;

    if(finfo_l.st_mtime < finfo_r.st_mtime)
        return NSOrderedAscending;

    if(finfo_l.st_mtime > finfo_r.st_mtime)
        return NSOrderedDescending;

    return NSOrderedSame;
}

Теперь, позже, в вашем коде.

NSMutableArray *mary = [NSMutableArray arrayWithArray:filePathsArray];

[mary sortUsingFunction:contentsOfDirSort context:nil];

// Use mary...
0 голосов
/ 15 ноября 2013

Быстрый метод:

-(void)dateModified
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];

    NSFileManager *manager = [NSFileManager defaultManager];
    NSArray *fileList = [manager contentsOfDirectoryAtPath:documentsDirectory error:nil];

    //--- Listing file by name sort
    NSLog(@"\n File list %@",fileList);




    int num;
    //-- Listing file name with modified dated
    for (NSString *s in fileList)
    {
        NSString *filestring = [documentsDirectory stringByAppendingFormat:@"/%@",s];

        NSDictionary *filePathsArray1 = [[NSFileManager defaultManager] attributesOfItemAtPath:filestring error:nil];
        NSString *modifiedDate = [filePathsArray1 objectForKey:NSFileModificationDate];
        NSLog(@"\n Modified Day : %@", modifiedDate);

        num=num+1;
    }
}
0 голосов
/ 07 ноября 2013

В категории свыше NSFileManager:

static  NSInteger contentsOfDirSort(NSURL *leftURL, NSURL *rightURL, void *ptr)
{
    (void)ptr;

    NSDate * dateLeft ;
    [leftURL getResourceValue:&dateLeft
                       forKey:NSURLContentModificationDateKey
                        error:nil] ;

    NSDate * dateRight ;
    [leftURL getResourceValue:&dateRight
                       forKey:NSURLContentModificationDateKey
                        error:nil] ;

    return [dateLeft compare:dateRight];
}




- (NSArray *)contentsOrderedByDateOfDirectoryAtPath:(NSURL *)URLOfFolder ;
{
    NSArray *files = [self contentsOfDirectoryAtURL:URLOfFolder
                         includingPropertiesForKeys:[NSArray arrayWithObject:NSURLContentModificationDateKey]
                                            options:0
                                              error:nil];

    return [files sortedArrayUsingFunction:contentsOfDirSort
                                   context:nil] ;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...