3

需要在UTF时间格式的文件夹内获取IOS应用程序的最后修改时间吗?

4

1 回答 1

3

尝试以下代码,这将有所帮助

+ (NSString*) fnGetModifiedTime: (NSString*)inFolderPath {

    NSFileManager* fm = [NSFileManager defaultManager];
    NSDictionary* attrs = [fm attributesOfItemAtPath:inFolderPath error:nil];
    int theDirModified = 0;

    if (attrs != nil) {
        NSDate *date = (NSDate*)[attrs objectForKey: NSFileModificationDate];
        NSDate* theGlobalDate = [self toGlobalTime:date];
        theDirModified = [theGlobalDate timeIntervalSince1970];
    } 

    return [NSString stringWithFormat:@"%i",theDirModified];

}


+(NSDate *) toGlobalTime:(NSDate*) inDate
{
    NSTimeZone *tz = [NSTimeZone defaultTimeZone];
    NSInteger seconds = -[tz secondsFromGMTForDate: inDate];
    return [NSDate dateWithTimeInterval: seconds sinceDate: inDate];
}
于 2012-12-31T12:02:33.777 回答