tags:

views:

403

answers:

1

How can I find the last modified date of a file in cocoa?

+2  A: 

Check out NSFileManager's

- (NSDictionary *)fileAttributesAtPath:(NSString *)path traverseLink:(BOOL)flag

the key you're interested in is NSFileModificationDate.

diciu
This is deprecated in 10.5, instead use- (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error
aussiegeek