作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将我的数据保存在 iphone 中。如何找到以下 txt 文件?
有什么想法吗?
我的文件保存在以下目录中:
/var/mobile/Applications/366D42D4-5817-4007-831B-1A6EB929AF8E/Documents/Annotation1.txt
我的问题是如何找到已经保存在iphone中的txt文件。
最佳答案
您可以通过以下方式访问 Documents 目录:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
然后您将附加文件名:
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"Annotation1.txt"];
这为您提供了文件的路径。但是,如果您不知道这一点,那么您是如何保存文件的呢?
编辑:事实证明,OP 希望通过 iTunes 提供对文档目录中文件的访问权限。这是通过将“应用程序支持 iTunes 文件共享”键添加到 Info.plist 来完成的。该值应该是值为 YES 的 bool 值。
关于ios - 如何在iphone中查找文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12886904/
我是一名优秀的程序员,十分优秀!