Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2601620
  • 博文数量: 877
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 5920
  • 用 户 组: 普通用户
  • 注册时间: 2013-12-05 12:25
个人简介

技术的乐趣在于分享,欢迎多多交流,多多沟通。

文章分类

全部博文(877)

文章存档

2021年(2)

2016年(20)

2015年(471)

2014年(358)

2013年(26)

分类: iOS平台

2015-08-31 12:51:32

iOS学习之iOS沙盒(sandbox)机制和文件操作(二)
http://blog.csdn.net/totogo2010/article/details/7670417

接上篇 

iOS学习之iOS沙盒(sandbox)机制和文件操作(一)



我们看看如何获取应用程序沙盒目录。包括真机的沙盒的目录。


1、获取程序的Home目录

  1. NSString *homeDirectory = NSHomeDirectory();  
  2. NSLog(@"path:%@", homeDirectory);  


打印结果:
  1. 2012-06-17 14:00:06.098 IosSandbox[3536:f803] /Users/rongfzh/Library/Application Support/iPhone Simulator/5.1/Applications/3B8EC78A-5EEE-4C2F-B0CB-4C3F02B996D2  

那在真机上的目录有是怎么样的呢?我们看看

2012-06-17 14:25:47.059 IosSandbox[4281:f803] /var/mobile/Applications/3B8EC78A-5EEE-4C2F-B0CB-4C3F02B996D2

可见,真机上的目录是/var/mobile/Applications/这个目录下的,和模拟器不一样。这个是Home目录,其他的子目录和模拟器一样。


2、获取document目录
  1. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
  2. NSString *path = [paths objectAtIndex:0];  
  3. NSLog(@"path:%@", path);  
打印结果



  1. 2012-06-17 14:00:06.099 IosSandbox[3536:f803] path:/Users/rongfzh/Library/Application Support/iPhone Simulator/5.1/Applications/3B8EC78A-5EEE-4C2F-B0CB-4C3F02B996D2/Documents  
3、获取Cache目录



  1. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);  
  2. NSString *path = [paths objectAtIndex:0];  
  3. NSLog(@"%@", path);  
打印结果
  1. 2012-06-17 14:03:50.431 IosSandbox[3628:f803] /Users/rongfzh/Library/Application Support/iPhone Simulator/5.1/Applications/3B8EC78A-5EEE-4C2F-B0CB-4C3F02B996D2/Library/Caches  

4、获取Library目录



  1. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES);  
  2. NSString *path = [paths objectAtIndex:0];  
  3. NSLog(@"%@", path);  
打印结果
  1. 2012-06-17 14:07:17.544 IosSandbox[3733:f803] /Users/rongfzh/Library/Application Support/iPhone Simulator/5.1/Applications/3B8EC78A-5EEE-4C2F-B0CB-4C3F02B996D2/Library  
5、获取Tmp目录
  1. NSString *tmpDir = NSTemporaryDirectory();  
  2.  NSLog(@"%@", tmpDir);  
打印结果



  1. 2012-06-17 14:08:07.824 IosSandbox[3782:f803] /var/folders/g7/246bh79130zblw0yjjtc55cw0000gn/T/  
6、写入文件
  1. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
  2.     NSString *docDir = [paths objectAtIndex:0];  
  3.     if (!docDir) {  
  4.         NSLog(@"Documents 目录未找到");          
  5.     }  
  6.     NSArray *array = [[NSArray alloc] initWithObjects:@"内容",@"content",nil];  
  7.     NSString *filePath = [docDir stringByAppendingPathComponent:@"testFile.txt"];  
  8.     [array writeToFile:filePath atomically:YES];  


注:我们在真机上也运行一下,把文件写入,下一步从真机上把内容读取出来。

写入输入 array ,里面是两个字符串,一会我们读出来打印。

写入我们在程序沙盒目录下看到文件 testFile.txt

 

打开文件看到的内容是这样的,是个xml格式的plist文件,数据格式保存了内容。


  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" " style="margin:0px;padding:0px;border:none;background-color:inherit;">>  
  3. <plist version="1.0">  
  4. <array>  
  5.     <string>内容</string>  
  6.     <string>content</string>  
  7. </array>  
  8. </plist>  
7、读取文件



  1. NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);  
  2.     NSString *docDir = [paths objectAtIndex:0];  
  3.     NSString *filePath = [docDir stringByAppendingPathComponent:@"testFile.txt"];  
  4.     NSArray *array = [[NSArray alloc]initWithContentsOfFile:filePath];  
  5.     NSLog(@"%@", array);  
打印结果:


把上面的文件解析后,把内容打印出来了。


  1. 2012-06-17 14:14:46.249 IosSandbox[3918:f803] (  
  2.     "\U5185\U5bb9",  
  3.     content  
  4. )  


真机上读取并打印文件路径:


2012-06-17 14:25:47.059 IosSandbox[4281:f803] /var/mobile/Applications/3B8EC78A-5EEE-4C2F-B0CB-4C3F02B996D2/Documents/testFile.txt

 (


    "\U5185\U5bb9",

    content

)

真机上也能写入和打印。

著作权声明:本文由http://blog.csdn.net/totogo2010/原创,欢迎转载分享。请尊重作者劳动,转载时保留该声明和作者博客链接,谢谢
阅读(431) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~