-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFileEntry.m
50 lines (44 loc) · 1002 Bytes
/
FileEntry.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// FileEntry.m
// SimpleCap
//
// Created by - on 09/01/18.
// Copyright 2009 Hiroshi Hashiguchi. All rights reserved.
//
#import "FileEntry.h"
@implementation FileEntry
@synthesize name = _name;
@synthesize created = _created;
- (id)initWithFilename:(NSString*)filename fileAttributes:(NSDictionary*)attrs
{
self = [super init];
if (self) {
_name = [filename retain];
_created = [[attrs objectForKey:NSFileCreationDate] retain];
}
return self;
}
- (void) dealloc
{
[_name release];
[_created release];
[super dealloc];
}
- (NSString*)description
{
return [NSString stringWithFormat:@"%@ %@", _name, _created];
}
- (NSComparisonResult)compare:(FileEntry*)entry
{
if ([entry.created isEqualToDate:_created]) {
if ([[entry.name stringByDeletingPathExtension] hasSuffix:@")"]) {
return NSOrderedAscending;
} else {
return NSOrderedDescending;
}
} else {
return [_created compare:entry.created]; // ASC
}
// return [entry.created compare:_created]; // DESC
}
@end