建立與刪除:
//建立檔案管理工具
NSFileManager *fileManager = [NSFileManager defaultManager];
//擷取路徑
//參數NSDocumentDirectory要擷取那種路徑
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];//去處需要的路徑
//更改到待操作的目錄下
[fileManager changeCurrentDirectoryPath:[documentsDirectory stringByExpandingTildeInPath]];
//建立檔案fileName檔案名稱,contents檔案的內容,如果開始沒有內容可以設定為nil,attributes檔案的屬性,初始為nil
[fileManager createFileAtPath:@"fileName" contents:nil attributes:nil];
//刪除待刪除的檔案
[fileManager removeItemAtPath:@"createdNewFile" error:nil];
寫入資料:
//擷取檔案路徑
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"fileName"];
//待寫入的資料
NSString *temp = @”Hello friend”;
int data0 = 100000;
float data1 = 23.45f;
//建立資料緩衝
NSMutableData *writer = [[NSMutableData alloc] init];
//將字串添加到緩衝中
[writer appendData:[temp dataUsingEncoding:NSUTF8StringEncoding]];
//將其他資料添加到緩衝中
[writer appendBytes:&data0 length:sizeof(data0)];
[writer appendBytes:&data1 length:sizeof(data1)];
//將緩衝的資料寫入到檔案中
[writer writeToFile:path atomically:YES];
[writer release];
讀取資料:
int gData0;
float gData1;
NSString *gData2;
NSData *reader = [NSData dataWithContentsOfFile:path];
gData2 = [[NSString alloc] initWithData:[reader subdataWithRange:NSMakeRange(0, [temp length])]
encoding:NSUTF8StringEncoding];
[reader getBytes:&gData0 range:NSMakeRange([temp length], sizeof(gData0))];
[reader getBytes:&gData2 range:NSMakeRange([temp length] + sizeof(gData0), sizeof(gData1))];
NSLog(@”gData0:%@ gData1:%i gData2:%f”, gData0, gData1, gData2);
讀取工程中的檔案:
讀取資料時,要看待讀取的檔案原有的檔案格式,是位元組碼還是文本,我經常需要重檔案中讀取位元組碼,所以我寫的是讀取位元組檔案的方式。
//用於存放資料的變數,因為是位元組,所以是UInt8
UInt8 b = 0;
//擷取檔案路徑
NSString *path = [[NSBundle mainBundle] pathForResource:@”fileName” ofType:@”"];
//擷取資料
NSData *reader = [NSData dataWithContentsOfFile:path];
//擷取位元組的個數
int length = [reader length];
NSLog(@”——->bytesLength:%d”, length);
for(int i = 0; i < length; i++) { //讀取資料 [reader getBytes:&b range:NSMakeRange(i, sizeof(b))]; NSLog(@”——–>data%d:%d”, i, b);
}