gpt4 book ai didi

objective-c - 在 Cocoa 中查找文件的最后访问日期

转载 作者:太空狗 更新时间:2023-10-30 03:40:58 25 4
gpt4 key购买 nike

是否可以使用 cocoa 在 mac 中获取文件/文件夹的上次访问日期?

    struct stat output;
//int ret = stat([[[openPanel filenames] lastObject] UTF8String], &output);
int ret = stat([[[openPanel filenames] lastObject] fileSystemRepresentation], &output);
// error handling omitted for this example
struct timespec accessTime = output.st_atimespec;

NSDate *aDate = [NSDate dateWithTimeIntervalSince1970:accessTime.tv_sec];

NSLog(@"Access Time %d, %@",ret, aDate);

根据上面的代码,我已经尝试了 UTF8String 和 fileSystemRepresentation,但它们都给我当前的日期和时间。如果我做错了什么,请告诉我。

最佳答案

C 的方式,使用 stat 系统调用将在 Objective-C 中工作。

例如

struct stat output;
int ret = stat(aFilePath, &output);
// error handling omitted for this example
struct timespec accessTime = output.st_atime;

您应该通过将 -fileSystemRepresentation 发送到包含路径的 NSString 来获取文件路径。

另一种获得所需内容的方法是在指向所需文件的文件 URL 之前构造一个 NSURL,并使用 -resourceValuesForKeys:error:得到 NSURLContentAccessDate资源值(value)。

关于objective-c - 在 Cocoa 中查找文件的最后访问日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2833116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com