iPhone/iPad 上的文件共享?
我希望我的应用程序通过 itunes 文件共享来共享文件。现在所有文档文件夹 暴露给用户。问题是那里有某些我不想公开的文件(假设这些是“系统文件”)。我应该怎么办?如果无法“隐藏”文件,您认为最好将“系统文件”放在哪里?在库文件夹中?
谢谢
I want my app to share files via itunes file sharing. Right now all of the Documents folder
is exposed to the user. The problem is that there are certain files there (let's say these are "System files") that I don't want to expose. What should I do? And if it's not possible to "hide" files, where do you think it's best to put "System files"? In the Library folder?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Apple 有一个技术问答专门处理这个问题。
Apple has a Technical Q&A dealing with exactly this.
是的,Library 文件夹是一个不错的选择。 Documents 文件夹应保留用于存放用户的文档。或者,您可以在“系统文件”的文件名前加上
.
前缀,或将它们放入 Documents 文件夹的.hidden
子文件夹中。据我所知,这些隐藏文件目前未显示在 iTunes 中。Yes, the Library folder is a good choice. The Documents folder should be reserved for the user's documents. Alternatively, you can prefix the filenames of your "system files" with a
.
or put them in a.hidden
subfolder of the Documents folder. Those hidden files are currently not shown in iTunes AFAIK.