沙盒(sandbox)文件路径

一点建议,对于初用MAC中文版里边有几个中文根目录,(系统, 用户,资源库),开发者注意一下,有写文档或是开发教程会用Library或是Users或是System值得就是这几个目录。

http://blog.sina.com.cn/s/blog_491aced2010109xw.html一、沙盒(sandbox)
出于安全的目的,应用程序只能将自己的数据和偏好设置写入到几个特定的位置上。

当应用程序被安装到设备上时,系统会为其创建一个家目录,这个家目录就是应用程序的沙盒。

 

 

家目录下共有四个子目录:

Documents 目录:您应该将所有的应用程序数据文件写入到这个目录下。这个目录用于存储用户数据或其它应该定期备份的信息。
AppName.app 目录:这是应用程序的程序包目录,包含应用程序的本身。由于应用程序必须经过签名,所以您在运行时不能对这个目录中的内容进行修改,否则可能会使应用程序无法启动。
Library 目录:这个目录下有两个子目录:Caches 和 Preferences
Preferences 目录包含应用程序的偏好设置文件。您不应该直接创建偏好设置文件,而是应该使用NSUserDefaults类来取得和设置应用程序的偏好
Caches 目录用于存放应用程序专用的支持文件,保存应用程序再次启动过程中需要的信息。
tmp 目录:这个目录用于存放临时文件,保存应用程序再次启动过程中不需要的信息。

获取这些目录路径的方法:
1,获取家目录路径的函数:
NSString *homeDir = NSHomeDirectory();

/Users/user


2,获取Documents目录路径的方法:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *docDir = [paths objectAtIndex:0];

/Users/user/Documents会自带的加上Documents,你在加你的文件名会追加到后边


3,获取Caches目录路径的方法:
NSArray*paths=NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *cachesDir = [paths objectAtIndex:0];

/Users/user/Library/Caches 没有实际的目录cache


4,获取tmp目录路径的方法:
NSString *tmpDir = NSTemporaryDirectory();

/var/folders/0q/5w2vr7qs1rj05gjnpsc_cx0m0000gn/T/我的是这个因MAC和应用程序而异这个是临时文件夹

http://blog.sina.com.cn/s/blog_491aced2010109xw.html

5,获取应用程序程序包中资源文件路径的方法:
例如获取程序包中一个图片资源(apple.png)路径的方法:
NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"MHB" ofType:@"txt"];
UIImage *appleImage = [[UIImage alloc] initWithContentsOfFile:imagePath];

/Mac Xcode/Xcode Projects/text/text/DerivedData/text/Build/Products/Debug/text.app/Contents/Resources/MHB.txt

从上述路径可以看出,首先你必须把你要找的文件加入你的工程,否则找不到文件,并且找到也不是你加入文件的原先路径,而是编译后应用的app内含的路径


代码中的mainBundle类方法用于返回一个代表应用程序包的对象。

二、文件IO
1,将数据写到Documents目录:
- (BOOL)writeApplicationData:(NSData *)data toFile:(NSString *)fileName {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 

NSString *docDir = [paths objectAtIndex:0]; 

if (!docDir)

 { 

NSLog(@”Documents directory not found!”);

  return NO; 

NSString *filePath = [docDir stringByAppendingPathComponent:fileName];
return [data writeToFile:filePath atomically:YES];

}

2,从Documents目录读取数据:
- (NSData *)applicationDataFromFile:(NSString *)fileName {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 

NSString *docDir = [paths objectAtIndex:0]; 

NSString *filePath = [docDir stringByAppendingPathComponent:fileName];

  NSData *data = [[[NSData alloc] initWithContentsOfFile:filePath] autorelease]; 

return data;

}

 

NSSearchPathForDirectoriesInDomains这个主要就是返回一个绝对路径用来存放我们需要储存的文件。

- (NSString *)dataFilePath {
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
return [documentsDirectory stringByAppendingPathComponent:@"shoppingCar.plist"];
}

NSFileManager* fm=[NSFileManager defaultManager];
if(![fm fileExistsAtPath:[self dataFilePath]]){
//下面是对该文件进行制定路径的保存
[fm createDirectoryAtPath:[self dataFilePath] withIntermediateDirectories:YES attributes:nil error:nil];
//取得一个目录下得所有文件名
NSArray *files = [fm subpathsAtPath: [self dataFilePath] ];
//读取某个文件
NSData *data = [fm contentsAtPath:[self dataFilePath]];
//或者
NSData *data = [NSData dataWithContentOfPath:[self dataFilePath]];
}

其他资料
app沙盒获取文件

http://apps.hi.baidu.com/share/detail/30554141

http://www.apple.com.cn/developer/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide

/ApplicationEnvironment/ApplicationEnvironment.html#//apple_ref/doc/uid/TP40007072-CH7-SW2

你可能感兴趣的:(cache,System,library,attributes,2010,sandbox)