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

时间:2009-06-30 13:25:28

标签: cocoa

如何在cocoa中找到文件的最后修改日期?

3 个答案:

答案 0 :(得分:6)

查看 NSFileManager

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

您感兴趣的密钥是NSFileModificationDate。

答案 1 :(得分:5)

只是为了更新代码:

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

答案 2 :(得分:3)

在此处添加此答案,因为这是我搜索如何执行此操作时的第一个结果,但如果您使用swift,则可能会喜欢此扩展程序:

extension NSFileManager {

    func modificationDateForFileAtPath(path:String) -> NSDate? {
        guard let attributes = try? self.attributesOfItemAtPath(path) else { return nil }
        return attributes[NSFileModificationDate] as? NSDate
    }

    func creationDateForFileAtPath(path:String) -> NSDate? {
        guard let attributes = try? self.attributesOfItemAtPath(path) else { return nil }
        return attributes[NSFileCreationDate] as? NSDate
    }


}