Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 957541
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T00:43:12+00:00 2026-05-16T00:43:12+00:00

Is there an method to get the contents of a folder in a particular

  • 0

Is there an method to get the contents of a folder in a particular order? I’d like an array of file attribute dictionaries (or just file names) ordered by date modified.

Right now, I’m doing it this way:

  • get an array with the file names
  • get the attributes of each file
  • store the file’s path and modified date in a dictionary with the date as a key

Next I have to output the dictionary in date order, but I wondered if there’s an easier way? If not, is there a code snippet somewhere which will do this for me?

Thanks.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T00:43:13+00:00Added an answer on May 16, 2026 at 12:43 am

    nall’s code above pointed me in the right direction, but I think there are some mistakes in the code as posted above. For instance:

    1. Why is filesAndProperties allocated using NMutableDictonary rather than an NSMutableArray?
    2. 
      NSDictionary* properties = [[NSFileManager defaultManager]
                                              attributesOfItemAtPath:NSFileModificationDate
                                              error:&error];
      
      

      The code above is passing the wrong parameter for attributesOfItemAtPath – it should be attributesOfItemAtPath:path

    3. Your are sorting the files array, but you should be sorting filesAndProperties.

    I have implemented the same, with corrections, and using blocks and posted below:

    
        NSArray *searchPaths = NSSearchPathForDirectoriesInDomains (NSDocumentDirectory, NSUserDomainMask, YES);
        NSString* documentsPath = [searchPaths objectAtIndex: 0]; 
    
        NSError* error = nil;
        NSArray* filesArray = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:documentsPath error:&error];
        if(error != nil) {
            NSLog(@"Error in reading files: %@", [error localizedDescription]);
            return;
        }
    
        // sort by creation date
        NSMutableArray* filesAndProperties = [NSMutableArray arrayWithCapacity:[filesArray count]];
        for(NSString* file in filesArray) {
            NSString* filePath = [iMgr.documentsPath stringByAppendingPathComponent:file];
            NSDictionary* properties = [[NSFileManager defaultManager]
                                        attributesOfItemAtPath:filePath
                                        error:&error];
            NSDate* modDate = [properties objectForKey:NSFileModificationDate];
    
            if(error == nil)
            {
                [filesAndProperties addObject:[NSDictionary dictionaryWithObjectsAndKeys:
                                               file, @"path",
                                               modDate, @"lastModDate",
                                               nil]];                 
            }
        }
    
            // sort using a block
            // order inverted as we want latest date first
        NSArray* sortedFiles = [filesAndProperties sortedArrayUsingComparator:
                                ^(id path1, id path2)
                                {                               
                                    // compare 
                                    NSComparisonResult comp = [[path1 objectForKey:@"lastModDate"] compare:
                                                               [path2 objectForKey:@"lastModDate"]];
                                    // invert ordering
                                    if (comp == NSOrderedDescending) {
                                        comp = NSOrderedAscending;
                                    }
                                    else if(comp == NSOrderedAscending){
                                        comp = NSOrderedDescending;
                                    }
                                    return comp;                                
                                }];
    
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any method I can get the full JSON data from jqGrid when
Is there a special method to get iPhones orientation? I don't need it in
Is there a 1 line method to get the IP Address of the server?
Is there any way to get direct URL to a JSF bean action method?
Is there a gem or a library to get ruby 1.9 methods like [1,
I want to check remote folder's content, and determine if the particular file exists
To get a one-off view on a Plone folder I do something like this
is there a method to verify if a NSString haven't characters? example of string
Is there a method to return the position of the character in the JTextField.
is there a method to link specific files so that I can reference them

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.