是否可以在 iPhone 上以编程方式创建符号链接?

发布于 2024-11-19 20:45:15 字数 61 浏览 2 评论 0原文

我需要以编程方式在 iPhone 设备上创建符号链接,以避免大量缓慢的文件复制。这可能吗?如果可以,怎么做?

I need to create a symbolic link on iPhone devices programatically in order to avoid a lot of slow file copying. Is this possible to do and if so, how?

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

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

发布评论

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

评论(1

长伴 2024-11-26 20:45:16

从技术上讲,通过 是可行的NSFileManager 类。获取单例实例,然后使用“链接项目”或“符号链接操作”下列出的任何调用(createSymbolicLinkAtPath:withDestinationPath:error: 看起来是一个不错的候选者)。

使用链接而不是直接文件是开发人员短暂用来以编程方式更新其 Default.png 的一种方法,但这种特定用途已被 Apple 禁止。除此之外,恐怕我不得不承认对任何 SDK 使用限制一无所知。

It's technically possible, via the NSFileManager class. Grab the singleton instance and then use any of the calls listed under 'Linking an Item' or 'Symbolic-Link Operations' (createSymbolicLinkAtPath:withDestinationPath:error: looks like a good candidate).

Using a link rather than a direct file was a method briefly used by developers to update their Default.png programmatically, but that specific use has been outlawed by Apple. Besides that I'm afraid I have to plead ignorance on any SDK usage restrictions.

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