Objective-c:获取文件创建日期&文件修改日期/时间为毫秒或纳秒

时间:2017-01-24 01:42:06

标签: ios objective-c creation

以下方法仅限于第二种方法。

NSString *path = @"/Users/Raven/Downloads/1.png";
NSDictionary* fileAttribs = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:nil];
NSDate *result = [fileAttribs objectForKey:NSFileCreationDate]; //or NSFileModificationDate
NSLog(@"%@",result);

0 个答案:

没有答案