iphone沙箱模型的有四个文件夹,分别是什么,永久数据存储一般放在什么位置,得到模拟器的路径的简单方式是什么.
documents,tmp,app,Library。
(NSHomeDirectory()),
手动保存的文件在documents文件里
Nsuserdefaults保存的文件在tmp文件夹里
1、Documents 目录:您应该将所有de应用...
分类:
移动开发 时间:
2014-06-27 09:02:12
阅读次数:
212
获取应用的沙盒目录l沙盒根目录:NSString *home
=NSHomeDirectory();lDocuments:(2种方式)u利用沙盒根目录拼接”Documents”字符串NSString *home
=NSHomeDirectory();NSString*documents = [hom...
分类:
其他好文 时间:
2014-06-06 20:10:44
阅读次数:
208
获取程序的Home目录 NSString *home =
NSHomeDirectory();注意: 虚拟机Home目录: /Users/userName/Library/Application
Support/iPhone Simulator/6.1/Applications/C926CCFA-A...
分类:
其他好文 时间:
2014-05-30 03:05:43
阅读次数:
233
1 void copyFile() 2 { 3 NSString
*home=NSHomeDirectory(); 4 NSString *path=[NSString
stringWithFormat:@"%@/desktop/oc.mp4",home]; 5 NSStr...
分类:
编程语言 时间:
2014-05-10 21:12:51
阅读次数:
368
有两种写法可以获取到Documents的路径1.NSString *path =
[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"];
这种写法不是很严谨2.NSArray *filePath = NSSearchPath....
分类:
移动开发 时间:
2014-05-08 09:28:59
阅读次数:
342
上一篇简单的介绍了如何获取文件属性,删除,拷贝文件等,本文继续记录Object C中文件IO操作。
一. 获取文件的执行主目录 在Object C中提供了一个方法NSHomeDirectory() 用于获得执行执行的主目录,使用如下代码测试:NSString
*homePath=NSHo...
分类:
其他好文 时间:
2014-05-05 22:30:57
阅读次数:
351
iOS如何找到自己的沙盒
在ios开发我们会用到沙盒,由于自己对沙盒理解的不够,所以找不到沙盒文件在哪里,当然要知道路径了
例如我的路径
NSString* cachepath = [NSHomeDirectory()stringByAppendingString:@"Douments"];
ASIDownloadCache* cache = [[ASIDownloadCache a...
分类:
移动开发 时间:
2014-04-29 13:12:21
阅读次数:
402