你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS開發綜合 >> 【理解】 iOS沙盒(sandbox)機制(二)

【理解】 iOS沙盒(sandbox)機制(二)

編輯:IOS開發綜合

1、在Documents裡創建目錄

創建一個叫test的目錄,先找到Documents的目錄,

NSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString*documentsDirectory=[pathsobjectAtIndex:0]; NSLog(@"documentsDirectory%@",documentsDirectory); NSFileManager*fileManager=[NSFileManagerdefaultManager]; NSString*testDirectory=[documentsDirectorystringByAppendingPathComponent:@"test"]; //創建目錄 [fileManagercreateDirectoryAtPath:testDirectorywithIntermediateDirectories:YESattributes:nilerror:nil];

啟動程序,這時候目錄就創建了:

\

 

2、在test目錄下創建文件

創建文件怎麼辦呢?接著上面的代碼 testPath 要用stringByAppendingPathComponent拼接上你要生成的文件名,比如test00.txt。這樣才能在test下寫入文件。

testDirectory是上面代碼生成的路徑哦,不要忘了。我往test文件夾裡寫入三個文件,test00.txt ,test22.txt,text.33.txt。內容都是寫入內容,write String。

實現代碼如下:

NSString*testPath=[testDirectorystringByAppendingPathComponent:@"test00.txt"]; NSString*testPath2=[testDirectorystringByAppendingPathComponent:@"test22.txt"]; NSString*testPath3=[testDirectorystringByAppendingPathComponent:@"test33.txt"];     NSString*string=@"寫入內容,writeString"; [fileManagercreateFileAtPath:testPathcontents:[stringdataUsingEncoding:NSUTF8StringEncoding]attributes:nil]; [fileManagercreateFileAtPath:testPath2contents:[stringdataUsingEncoding:NSUTF8StringEncoding]attributes:nil]; [fileManagercreateFileAtPath:testPath3contents:[stringdataUsingEncoding:NSUTF8StringEncoding]attributes:nil]; 看下面的圖,三個文件都出來了,內容也對。

\

在Documents目錄下創建就更簡單了,不用加test就ok了

3、獲取目錄列裡所有文件名

兩種方法獲取:subpathsOfDirectoryAtPath 和 subpathsAtPath

NSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString*documentsDirectory=[pathsobjectAtIndex:0]; NSLog(@"documentsDirectory%@",documentsDirectory); NSFileManager*fileManage=[NSFileManagerdefaultManager]; NSString*myDirectory=[documentsDirectorystringByAppendingPathComponent:@"test"]; NSArray*file=[fileManagesubpathsOfDirectoryAtPath:myDirectoryerror:nil]; NSLog(@"%@",file); NSArray*files=[fileManagesubpathsAtPath:myDirectory]; NSLog(@"%@",files);

獲取上面剛才test文件夾裡的文件名

打印結果

2012-06-17 23:23:19.684 IosSandbox[947:f803] fileList:(

".DS_Store",

"test00.txt",

"test22.txt",

"test33.txt"

)

2012-06-17 23:23:19.686 IosSandbox[947:f803] fileLit(

".DS_Store",

"test00.txt",

"test22.txt",

"test33.txt"

)

兩個方法都可以,隱藏的文件也打印出來了。

4、fileManager使用操作當前目錄

//創建文件管理器 NSFileManager*fileManager=[NSFileManagerdefaultManager]; NSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString*documentsDirectory=[pathsobjectAtIndex:0]; //更改到待操作的目錄下 [fileManagerchangeCurrentDirectoryPath:[documentsDirectorystringByExpandingTildeInPath]]; //創建文件fileName文件名稱,contents文件的內容,如果開始沒有內容可以設置為nil,attributes文件的屬性,初始為nil NSString*fileName=@"testFileNSFileManager.txt"; NSArray*array=[[NSArrayalloc]initWithObjects:@"helloworld",@"helloworld1",@"helloworld2",nil]; [fileManagercreateFileAtPath:fileNamecontents:arrayattributes:nil]; 這樣就創建了testFileNSFileManager.txt並把三個hello world寫入文件了

\

changeCurrentDirectoryPath目錄更改到當前操作目錄時,做文件讀寫就很方便了,不用加上全路徑

5、刪除文件

接上面的代碼,remove就ok了。

[fileManagerremoveItemAtPath:fileNameerror:nil]; 6、混合數據的讀寫

用NSMutableData創建混合數據,然後寫到文件裡。並按數據的類型把數據讀出來

6.1寫入數據: NSString*fileName=@"testFileNSFileManager.txt"; NSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES); NSString*documentsDirectory=[pathsobjectAtIndex:0]; //獲取文件路徑 NSString*path=[documentsDirectorystringByAppendingPathComponent:fileName]; //待寫入的數據 NSString*temp=@"nihao世界"; intdataInt=1234; floatdataFloat=3.14f; //創建數據緩沖 NSMutableData*writer=[[NSMutableDataalloc]init]; //將字符串添加到緩沖中 [writerappendData:[tempdataUsingEncoding:NSUTF8StringEncoding]]; //將其他數據添加到緩沖中 [writerappendBytes:&dataIntlength:sizeof(dataInt)]; [writerappendBytes:&dataFloatlength:sizeof(dataFloat)]; //將緩沖的數據寫入到文件中 [writerwriteToFile:pathatomically:YES];
我們看看數據怎麼樣了:

\
我們看到後面的是亂碼,那是中文被轉成了NSData後,還有int float的二進制

6.2讀取剛才寫入的數據:

//讀取數據: intintData; floatfloatData=0.0; NSString*stringData;   NSData*reader=[NSDatadataWithContentsOfFile:path]; stringData=[[NSStringalloc]initWithData:[readersubdataWithRange:NSMakeRange(0,[templength])] encoding:NSUTF8StringEncoding]; [readergetBytes:&intDatarange:NSMakeRange([templength],sizeof(intData))]; [readergetBytes:&floatDatarange:NSMakeRange([templength]+sizeof(intData),sizeof(floatData))]; NSLog(@"stringData:%@intData:%dfloatData:%f",stringData,intData,floatData);
  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved