资源连接:
iOS文件沙盒简介
Note:iOS中的沙盒机制(SandBox)是一种安全体系,它规定了应用程序只能在为该应用创建的文件夹内读取文件,不可以访问其他地方的内容。所有的非代码文件都保存在这个地方,比如图片、声音、属性列表和文本文件等。
- Sandbox (computer security), a virtual container in which untrusted programs can be safely run
-
Sandbox (software development), an online environment in which code or content changes can be tested without affecting the original system
-
每个应用程序都在自己的沙盒内。
-
不能随意跨越自己的沙盒去访问别的应用程序沙盒的内容。
-
应用程序向外请求或接收数据都需要经过权限认证(从其他沙盒)。
应用沙盒一般包括以下几个文件目录:应用程序包、Documents、Libaray(下面有Caches和Preferences目录)、tmp。
应用沙盒目录
-
应用程序包:包含所有的资源文件和可执行文件。
Note:路径,[[NSBundle mainBundle] bundlePath];
-
沙盒路径
NSHomeDirectory()
-
Documents:保存应用运行时生成的需要持久化的数据,iTunes会自动备份该目录。苹果建议将程序中建立的或在程序中浏览到的文件数据保存在该目录下,iTunes备份和恢复的时候会包括此目录。
NSArray *arrDocumentPaths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString *documentPath=[arrDocumentPaths objectAtIndex:0]; NSLog(@"Documents path: %@",documentPath);
-
tmp:保存应用运行时所需的临时数据,使用完毕后再将相应的文件从该目录删除。应用没有运行时,系统也有可能会清除该目录下的文件,iTunes不会同步该目录。iphone重启时,该目录下的文件会丢失。
NSTemporaryDirectory()
-
Libaray/Caches:存放缓存文件,iTunes不会备份此目录,此目录下文件不会在应用退出删除。一般存放体积比较大,不是特别重要的资源。
//Library目录 NSArray *libsPath = NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES); NSString *libPath = [libsPath objectAtIndex:0];
NSLog(@"Library目录:%@",libPath);
NSArray *arrCachesPaths=NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask,YES);
NSString *CachesPath=[arrCachesPaths objectAtIndex:0];
NSLog(@"Caches path: %@",CachesPath);
```
- Libaray/Preferences:保存应用的所有偏好设置,iOS的Settings(设置)应用会在该目录中查找应用的设置信息,iTunes会自动备份该目录。
用户偏好设置,plist格式文档;
系统提供[NSUserDefaults standardUserDefaults]单例类直接操作文档。
应用程序包和沙盒的路径区别
沙盒和应用包.png
工具类
- FileUtils.h
#import <Foundation/Foundation.h>
@interface FileUtils : NSObject
//返回缓存根目录 "caches"
+(NSString *)getCachesDirectory;
//返回根目录路径 "document"
+ (NSString *)getDocumentPath;
//创建文件夹
+(BOOL)creatDir:(NSString*)dirPath;
//删除文件夹
+(BOOL)deleteDir:(NSString*)dirPath;
//移动文件夹
+(BOOL)moveDir:(NSString*)srcPath to:(NSString*)desPath;
//创建文件
+ (BOOL)creatFile:(NSString*)filePath withData:(NSData*)data;
//读取文件
+(NSData*)readFile:(NSString *)filePath;
//删除文件
+(BOOL)deleteFile:(NSString *)filePath;
//返回 文件全路径
+ (NSString*)getFilePath:(NSString*) fileName;
//在对应文件保存数据
+ (BOOL)writeDataToFile:(NSString*)fileName data:(NSData*)data;
//从对应的文件读取数据
+ (NSData*)readDataFromFile:(NSString*)fileName;
@end
- FileUtils.m
#import "FileUtils.h"
@implementation FileUtils
//返回缓存根目录 "caches"
+(NSString *)getCachesDirectory
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *caches = [paths firstObject];
return caches;
}
//返回根目录路径 "document"
+ (NSString *)getDocumentPath
{
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentPath = [paths firstObject];
return documentPath;
}
//创建文件目录
+(BOOL)creatDir:(NSString*)dirPath
{
if ([[NSFileManager defaultManager] fileExistsAtPath:dirPath])//判断dirPath路径文件夹是否已存在,此处dirPath为需要新建的文件夹的绝对路径
{
return NO;
}
else
{
[[NSFileManager defaultManager] createDirectoryAtPath:dirPath withIntermediateDirectories:YES attributes:nil error:nil];//创建文件夹
return YES;
}
}
//删除文件目录
+(BOOL)deleteDir:(NSString*)dirPath
{
if([[NSFileManager defaultManager] fileExistsAtPath:dirPath])//如果存在临时文件的配置文件
{
NSError *error=nil;
return [[NSFileManager defaultManager] removeItemAtPath:dirPath error:&error];
}
return NO;
}
//移动文件夹
+(BOOL)moveDir:(NSString*)srcPath to:(NSString*)desPath;
{
NSError *error=nil;
if([[NSFileManager defaultManager] moveItemAtPath:srcPath toPath:desPath error:&error]!=YES)// prePath 为原路径、 cenPath 为目标路径
{
NSLog(@"移动文件失败");
return NO;
}
else
{
NSLog(@"移动文件成功");
return YES;
}
}
//创建文件
+ (BOOL)creatFile:(NSString*)filePath withData:(NSData*)data
{
return [[NSFileManager defaultManager] createFileAtPath:filePath contents:data attributes:nil];
}
//读取文件
+(NSData*)readFile:(NSString *)filePath
{
return [NSData dataWithContentsOfFile:filePath options:0 error:NULL];
}
//删除文件
+(BOOL)deleteFile:(NSString *)filePath
{
return [self deleteDir:filePath];
}
+ (NSString *)getFilePath:(NSString *)fileName
{
NSString *dirPath = [[self getDocumentPath] stringByAppendingPathComponent:fileName];
return dirPath;
}
+ (BOOL)writeDataToFile:(NSString*)fileName data:(NSData*)data
{
NSString *filePath=[self getFilePath:fileName];
return [self creatFile:filePath withData:data];
}
+ (NSData*)readDataFromFile:(NSString*)fileName
{
NSString *filePath=[self getFilePath:fileName];
return [self readFile:filePath];
}
@end
网友评论