在iOS中本地文件以下應(yīng)該就是常用的
- Documents :用于存儲(chǔ)用戶數(shù)據(jù)或其它應(yīng)該定期備份的信息蛉艾。(在我的項(xiàng)目中, 我用來存放下載到本地的音視頻數(shù)據(jù)衷敌。)
- Library 目錄:這個(gè)目錄下有兩個(gè)子目錄:Caches 和 Preferences
Preferences 目錄:包含應(yīng)用程序的偏好設(shè)置文件勿侯。您不應(yīng)該直接創(chuàng)建偏好設(shè)置文件,而是應(yīng)該使用NSUserDefaults類來取得和設(shè)置應(yīng)用程序的偏好.
Caches 目錄:用于緩存一些信息 - tmp 目錄:這個(gè)目錄用于存放臨時(shí)文件缴罗,保存應(yīng)用程序再次啟動(dòng)過程中不需要的信息助琐。
下面記錄一些項(xiàng)目中用到的部分
保存
- 通用部分-獲取路徑
//獲取Documents路徑
NSArray *Document = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString * DocumentsPath = [Document objectAtIndex:0];
//獲取Caches路徑
NSArray *Caches = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
NSString *cachesDir = [Caches objectAtIndex:0];
- 保存對(duì)象到本地
/*
自定義的對(duì)象要實(shí)現(xiàn)NSCoding協(xié)議,比如我這是要存入一個(gè)地圖類型的model
采用plist文件形式來保存
*/
//保存對(duì)象到本地
+(void)saveSearchModelToLocal:(AMapTip *)tip
{
/*
具體保存對(duì)象時(shí)候面氓,我所遇到的問題有以下幾點(diǎn)
1,要保存的對(duì)象要實(shí)現(xiàn)NSCoding歸檔協(xié)議兵钮,一般情況第三方比如高德地圖中的model一般都已經(jīng)實(shí)現(xiàn),自定義的要自己實(shí)現(xiàn)一下
2,保存對(duì)象前要檢測(cè)下是否已有相同對(duì)象舌界,避免重復(fù)掘譬,
3,保證每次保存的對(duì)象都是0的位置呻拌,使用insert插入到指定位置
*/
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"demonTest.plist"];
if (modelArray.count == 0) {
modelArray = [NSMutableArray arrayWithCapacity:1];
}
[modelArray insertObject:tip atIndex:0];
BOOL saveSuccess = [NSKeyedArchiver archiveRootObject:modelArray toFile:filePath];
if (saveSuccess) {
NSLog(@"save status = %d",saveSuccess);
}
}
- 保存圖片到本地
/*
項(xiàng)目中的應(yīng)用場(chǎng)景是葱轩,本地視頻在顯示的時(shí)候需要顯示縮略圖,通過AVURLAsset等部分代碼獲取之后,將圖片保存到本地做一下緩存靴拱,下次搜索是否有圖片垃喊,有就直接加載
*/
//獲取路徑也是一樣的
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
/*
拼接最后完整的路徑,這塊做的時(shí)候遇到個(gè)坑袜炕,記錄如下
拿到上述路徑之后本谜,下面部分代碼在于將最后文件的路徑補(bǔ)全,首先要加上‘/'這個(gè)分隔符,然后后面的是文件的名字,最后的效果如下,
/var/mobile/Containers/Data/Application/400BC47D-FBC5-412F-8F55-163E5FBB8264/Documents/thumImage2017_0818_101305_0028_F.jpg
-----之前這個(gè)沒有加'/’這個(gè)分隔符妇蛀,導(dǎo)致怎么保存之后都拿不到圖片
*/
UIImage *thumb = [[UIImage alloc] initWithCGImage:image];
NSString *imagePath = [path stringByAppendingString:[NSString stringWithFormat:@"/thumImage%@.jpg",[array firstObject]]];
[UIImagePNGRepresentation(thumb) writeToFile:imagePath atomically:YES];
如果是保存一些簡(jiǎn)單的信息的話耕突,一般NSUserDefaults用來保存數(shù)組笤成,字典什么的就可以了.
讀取
- 讀取對(duì)象
//以上面plist保存為例评架,下面是讀取反歸檔
+ (NSMutableArray *)getSearchModel
{
//一般情況下,即便是沒保存的時(shí)候應(yīng)該需要先去讀取的炕泳,所以纵诞,最好判斷是文件的存在與否
NSString *filePath = [self getDocumentPath];
NSFileManager *fileM = [NSFileManager defaultManager];
if (![fileM fileExistsAtPath:filePath]) {
[fileM createFileAtPath:filePath contents:nil attributes:nil];
}
NSMutableArray *array = [NSKeyedUnarchiver unarchiveObjectWithFile:filePath];
return array;
}
- 讀取圖片
- (void)getImage:(NSString *)fileName
{
/*
讀取圖片其實(shí)就是保存的逆過程
1,在下面這個(gè)創(chuàng)建UIImage的方法中培遵,之前都是傳入文件的名字浙芙,而且我都是在工程里已經(jīng)有該圖片的時(shí)候才會(huì)使用這個(gè)方法,但是這次誤打誤撞之下傳入了我拿到的圖片文件的路徑籽腕,沒想到也可以顯示嗡呼。
2,本來該方法是配合獲取視頻的縮略圖然后要做緩存皇耗,imageNamed該方法系統(tǒng)會(huì)做緩存南窗,那么圖片只會(huì)加載一次,目前來看配合TableView還行郎楼,沒有嘗試大量數(shù)據(jù)
UIImage *img = [UIImage imageNamed:imagePath];
*/
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSArray *array = [fileName componentsSeparatedByString:@"."];
NSString *imagePath = [path stringByAppendingString:[NSString stringWithFormat:@"/thumImage%@.jpg",[array firstObject]]];
UIImage *img = [UIImage imageNamed:imagePath];
}
刪除
- 刪除文件
//以上面保存的圖片為例
- (void)deleteFileWith:(NSString *)fileName
{
/*
在通過文件的名字獲取到文件路徑之后万伤,通過NSFileManage來刪除某個(gè)路徑的文件
*/
NSFileManager *fileManager = [NSFileManager defaultManager];
NSArray *docuPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *localFilePath = [NSString stringWithFormat:@"%@/%@",[docuPaths lastObject],fileName];
BOOL blHave=[[NSFileManager defaultManager] fileExistsAtPath:localFilePath];
if (blHave) {
BOOL blDele= [fileManager removeItemAtPath:localFilePath error:nil];
if (blDele) {
NSLog(@"dele success");
}else {
NSLog(@"dele fail");
}
}
}