NSFileManager fileExistsAtPath: &符号链接

发布于 2024-09-17 01:24:30 字数 276 浏览 6 评论 0原文

在我的 ~/Library/Caches/ 目录中,我有一个到我的应用程序包的符号链接,以及一些到图像的符号链接(例如“big_picture.png”是到“small_picture.png”的符号链接)。当我尝试使用 NSFileManager 的 fileExistsAtPath: 方法检查符号链接是否存在时,它会返回 NO,即使符号链接确实存在,并且它链接到存在的文件以及。

据我所知,苹果的文档声称我正在尝试做的事情应该有效。我做错了什么,还是这是一个错误?

In my ~/Library/Caches/ directory, I have a symbolic link to my app's bundle, and some symbolic links to images (e.g. "big_picture.png" is a symlink to "small_picture.png"). When I try to check if the symlinks exist, using the NSFileManager's fileExistsAtPath: method, it returns NO, even when the symlink does exist, and it links to a file that exists as well.

As far as I know, Apple's documentation claims that what I'm trying to do should work. Am I doing something wrong, or is this a bug?

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

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

发布评论

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

评论(1

东京女 2024-09-24 01:24:30

fileExistsAtPath 可能遵循符号链接。也许你可以尝试不同的方法 - 使用 attributesOfItemAtPath:error:。如果文件存在,将返回一个字典,它使您能够检查文件类型。要执行后者,请在字典上调用 fileType 并根据 NSFileTypeSymbolicLink 检查它。

fileExistsAtPath might follow the symlink. Maybe you can try a different method -- Use attributesOfItemAtPath:error:. A dictionary will be returned if the file exists, and it will give you the ability to check the file type. To do the latter, call fileType on the dictionary and check it against NSFileTypeSymbolicLink.

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