如何解决 fileAttributesAtPath 警告问题?

发布于 2024-12-29 15:20:00 字数 264 浏览 2 评论 0原文

现在我使用这段代码:

NSDictionary* attr = [[NSFileManager defaultManager] fileAttributesAtPath:file traverseLink:YES];

并收到警告:

'fileAttributesAtPath:traverseLink:' is deprecated

谁知道该用什么代替?

谢谢!

Now I use this code:

NSDictionary* attr = [[NSFileManager defaultManager] fileAttributesAtPath:file traverseLink:YES];

and get warning:

'fileAttributesAtPath:traverseLink:' is deprecated

Who knows what to use instead?

Thanks!

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

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

发布评论

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

评论(5

我ぃ本無心為│何有愛 2025-01-05 15:20:00

请改用 attributesOfItemAtPath:error:

Use attributesOfItemAtPath:error: instead.

深陷 2025-01-05 15:20:00

使用attributesOfItemAtPath:错误:

NSError* error;
NSDictionary* attr = [[NSFileManager defaultManager] attributesOfItemAtPath:file error:&error];

use attributesOfItemAtPath:error:

NSError* error;
NSDictionary* attr = [[NSFileManager defaultManager] attributesOfItemAtPath:file error:&error];
影子是时光的心 2025-01-05 15:20:00

接受的答案忘记处理问题中的 traverseLink:YES

改进的答案是同时使用 attributesOfItemAtPath:error:stringByResolvingSymlinksInPath

NSDictionary* attr = [[NSFileManager defaultManager] attributesOfItemAtPath:[file stringByResolvingSymlinksInPath] error:nil];

The accepted answer forgot to handle traverseLink:YES from the question.

An improved answer is using both attributesOfItemAtPath:error: and stringByResolvingSymlinksInPath:

NSDictionary* attr = [[NSFileManager defaultManager] attributesOfItemAtPath:[file stringByResolvingSymlinksInPath] error:nil];
耶耶耶 2025-01-05 15:20:00

特别注意事项

由于此方法不返回错误信息,因此自 Mac OS X v10.5 起已弃用。 使用 setAttributes:ofItemAtPath:error: 代替。

链接

Special Considerations

Because this method does not return error information, it has been deprecated as of Mac OS X v10.5. Use setAttributes:ofItemAtPath:error: instead.

link

铃予 2025-01-05 15:20:00

你应该阅读 文档

fileAttributesAtPath:traverseLink:

返回描述文件 POSIX 属性的字典
指定给定的。 (在 Mac OS X v10.5 中已弃用。使用
attributesOfItemAtPath:error: 代替。)

you should read documentation:

fileAttributesAtPath:traverseLink:

Returns a dictionary that describes the POSIX attributes of the file
specified at a given. (Deprecated in Mac OS X v10.5. Use
attributesOfItemAtPath:error: instead.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文