當前位置:成語大全網 - 書法字典 - ios writetofile會被覆蓋嗎?

ios writetofile會被覆蓋嗎?

是的,如果您不需要保險,您應該做出如下判斷:

//創建壹個文件-如果不存在,它將被創建-如果存在,它將被重復檢測。

NSMutableArray * big array =【【NSMutableArray alloc】init】;

如果(!【fileM filexistsatpath:strPath】){

【fileM createFileAtPath:strPath內容:nil屬性:nil】;//如果不存在則創建

【big array add object:dict file text】;//將第壹個數據放入數組。

}否則{

//文件已經存在

big array =【self readLocalCacheFolder:strFileName】;

//判斷元素是否已經存在-更新現有元素。

for(NSInteger I = 0;我& ltbigArray.counti++) {

if(【data code isEqualToString:【big array【I】objectForKey:@“code“】】){

//已經存在

【big array removeObjectAtIndex:I】;

打破;

}

}

【big array add object:dict file text】;

}