在Objective-C中的FileTime结构中获取当前日期时间

时间:2011-09-14 13:29:17

标签: objective-c filetime

我想在objective-c中的FileTime结构中获取当前日期时间,这可能吗?感谢。

2 个答案:

答案 0 :(得分:4)

我找到了一个优雅的解决方案:

/**
 * number of seconds from 1 Jan. 1601 00:00 to 1 Jan 1970 00:00 UTC
 */
#include <sys/time.h>
#define EPOCH_DIFF 11644473600LL

unsigned long long getfiletime()
{
    struct timeval tv;
    unsigned long long result = EPOCH_DIFF;
    gettimeofday(&tv,NULL);
    result += tv.tv_sec;
    result *= 10000000LL;
    result += tv.tv_usec * 10;
    return result;
}

使用以下方法将当前时间存储在FileTime中:

NSString* timeStamp  = [NSString stringWithFormat:@"%llu",getfiletime()];

答案 1 :(得分:1)

你是说意思吗? “YYYY:MM:DD:HH:MM:SS”

您可以使用以下代码。

    NSDateFormatter *formatDate = [[NSDateFormatter alloc] init];
    [formatDate setDateFormat:@"yyyy:MM:dd:HH:mm:ss"];

    NSDate *now = [[NSDate alloc] init];

    NSString *formattedDate = [formatDate stringFromDate:now];

    NSLog(@"%@", formattedDate);

    [now release];
    [formatDate release];