Работа с файлами / Базовые операции

NSDictionary *attrs =
    [[NSFileManager defaultManager]
        attributesOfItemAtPath:@"file.txt"
        error:nil];

//file size
NSNumber *fileSize = attrs[NSFileSize];

//modification date
NSDate *modified =
    attrs[NSFileModificationDate];

//creation date
NSDate *created = attrs[NSFileCreationDate];