如何在cocoa中找到文件的上次修改日期?
查看NSFileManager的
- (NSDictionary *)fileAttributesAtPath:(NSString *)path traverseLink:(BOOL)flag
你感兴趣的关键是NSFileModificationDate.
只是为了更新代码:
NSString * path = ... your path here ... NSDate * fileLastModifiedDate = nil; NSError * error = nil; NSDictionary * attrs = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:&error]; if (attrs && !error) { fileLastModifiedDate = [attrs fileModificationDate]; }