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
2009-06-30 13:32:45
This is deprecated in 10.5, instead use- (NSDictionary *)attributesOfItemAtPath:(NSString *)path error:(NSError **)error
aussiegeek
2010-02-12 10:52:39