当前位置:  开发笔记 > IOS > 正文

在Cocoa中查找文件的上次修改日期

如何解决《在Cocoa中查找文件的上次修改日期》经验,为你挑选了2个好方法。

如何在cocoa中找到文件的上次修改日期?



1> diciu..:

查看NSFileManager

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

你感兴趣的关键是NSFileModificationDate.


这在10.5中已弃用,而是使用 - (NSDictionary*)attributesOfItemAtPath:(NSString*)路径错误:(NSError**)错误

2> UJey..:

只是为了更新代码:

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];
}

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有