查看Plist文件最后编辑的信息

发布于 2024-09-30 11:24:07 字数 106 浏览 4 评论 0原文

有什么方法可以获取文件的上次编辑时间吗?我的服务器上有一个 pList,可以下载到我的应用程序。我想看看它上次编辑的时间。我是否必须实现特定的密钥,或者您可以从应用程序内查看 pLists 信息吗?

Is there any way you can get the last edited time off a file? I have a pList on a server that download to my app. I would like to look at the time it was last edited. Do I have to implement a specific key, or can you look at the pLists information from within the app?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

强者自强 2024-10-07 11:24:07

答案如下:

NSString *pathName; //assuming you already have this
NSDictionary *fileAttributes = [[NSFileManager defaultManager]attributesOfItemAtPath:pathName error:nil];
NSDate *editDate = [fileAttributes objectForKey:NSFileModificationDate];

Here's the answer:

NSString *pathName; //assuming you already have this
NSDictionary *fileAttributes = [[NSFileManager defaultManager]attributesOfItemAtPath:pathName error:nil];
NSDate *editDate = [fileAttributes objectForKey:NSFileModificationDate];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文