如果用户将符号链接或别名拖到 iTunes 文件共享中该怎么办?
我将使用 iTunes 文件共享,以便用户可以使用 iTunes 将文件轻松拖动到应用程序的文档目录中。
我从来没有尝试过这个,但是如果用户将别名或符号链接拖到那里怎么办?会发生什么?我想 iTunes 很聪明,它实际上提取了真实的文件,而不是符号链接。但假设它不聪明,我将如何在我的应用程序中处理这个问题?
我如何检测到这一点并告诉用户他将垃圾拖到了文档目录中?
My will use iTunes File Sharing so the user can drag files easily into the Documents directory of the app, using iTunes.
I never tried this but what if the user drags an alias or symbolic link in there? What happens? I guess that iTunes is clever and actually pulls in the real file, not the symbolic link. But assuming it's not clever, how will I deal with this in my app?
How can I detect this and tell the user that he dragged garbage to the documents dir?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
NSFileManager
'attributesOfItemAtPath:error
获取有关文件路径的详细信息。NSFileType
键应该告诉您它是否是符号链接。Use
NSFileManager
'attributesOfItemAtPath:error
to get details on the file path.NSFileType
key should tell you whether its a symlink or not.