1,获取家目录路径的函数:NSString *homeDir = NSHomeDirectory();2,获取Documents目录路径的方法:NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUs...
分类:
其他好文 时间:
2014-09-05 19:43:22
阅读次数:
148
-(void)dirHome{
NSString *dirHome=NSHomeDirectory();
NSLog(@"app_home: %@",dirHome);
}
iOS的沙盒机制,应用只能访问自己应用目录下的文件。iOS 不像android,没有SD卡的概念,不能直接访问图像、视频等内容。iOS应用产生的内容,如图像、文件、缓存内容等都必须存储在自己的沙盒内。...
分类:
移动开发 时间:
2014-09-01 14:02:33
阅读次数:
177
复制一个文件:
@autoreleasepool {
NSString *homePah = NSHomeDirectory();
NSLog(@"%@",homePah);
NSString *srcPath = [homePah stringByAppendingPathComponent:@"iOS.pdf"];
NSStr...
分类:
其他好文 时间:
2014-08-29 14:45:28
阅读次数:
271
1、获取程序的Home目录[cpp]view plaincopyNSString*homeDirectory=NSHomeDirectory();NSLog(@"path:%@",homeDirectory);打印结果:[cpp]view plaincopy2012-06-1714:00:06.09...
分类:
移动开发 时间:
2014-08-19 15:55:04
阅读次数:
238
某个iphone工程进行文件操作有此工程对应的指定的位置,不能逾越。iphone沙箱模型的有四个文件夹,分别是什么,永久数据存储一般放在什么位置,得到模拟器的路径的简单方式是什么.documents,tmp,app,Library。(NSHomeDirectory()),手动保存的文件在docume...
分类:
其他好文 时间:
2014-08-17 22:39:13
阅读次数:
194
/****归档**/ NSString *homePath=NSHomeDirectory(); NSString *fileName=@"test.vse"; NSString *path=[homePath stringByAppendingPathComponent:file...
分类:
移动开发 时间:
2014-08-16 12:32:10
阅读次数:
189
iphone沙箱模型的有四个文件夹,分别是什么,永久数据存储一般放在什么位置,得到模拟器的路径的简单方式是什么.documents,tmp,app,Library。(NSHomeDirectory()),手动保存的文件在documents文件里Nsuserdefaults保存的文件在tmp文件夹里1...
分类:
移动开发 时间:
2014-07-25 10:50:51
阅读次数:
192
首先在本地初始化一个数据库- (void)initDatabase{ //最终数据库路径 NSString *dbPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/database.db"]; NSFil...
分类:
其他好文 时间:
2014-07-18 19:12:27
阅读次数:
245
iphone沙箱模型的有四个文件夹,分别是什么,永久数据存储一般放在什么位置,得到模拟器的路径的简单方式是什么.documents,tmp,app,Library。(NSHomeDirectory()),手动保存的文件在documents文件里Nsuserdefaults保存的文件在tmp文件夹里1...
分类:
移动开发 时间:
2014-07-09 23:12:06
阅读次数:
242
1.什么是文件系统?
IOS中每个应用都有自己的文件系统,并有相应的访问权限,一般分为
~/Documents/
~/tmp/
~/Library/Caches/
~/Library/Preferences/-------键值对,不用关心文件路径。
其路径的获取方式为
{
//获取主目录
NSString *path=NSHomeDirectory();
...
分类:
移动开发 时间:
2014-07-09 10:02:18
阅读次数:
242