1、常見(jiàn)的NSFileManager文件方法
-(NSData *)contentsAtPath:path //從一個(gè)文件讀取數(shù)據(jù)
-(BOOL)createFileAtPath: path contents:(NSData *)data attributes:attr //向一個(gè)文件寫(xiě)入數(shù)據(jù)
-(BOOL)removeItemAtPath:path error:err //刪除一個(gè)文件
-(BOOL)moveItemAtPath:from toPath:to error:err //重命名或者移動(dòng)一個(gè)文件(to不能是已存在的)
-(BOOL)copyItemAtPath:from toPath:to error:err //復(fù)制文件(to不能是已存在的)
-(BOOL)contentsEqualAtPath:path andPath:path2 //比較兩個(gè)文件的內(nèi)容
-(BOOL)fileExistAtPath:path //測(cè)試文件是否存在
-(BOOL)isReadableFileAtPath:path //測(cè)試文件是否存在移迫,并且是否能執(zhí)行讀操作
-(BOOL)isWriteableFileAtPath:path //測(cè)試文件是否存在旺嬉,并且是否能執(zhí)行寫(xiě)操作
-(NSDictionary *)attributesOfItemAtPath:path error:err //獲取文件的屬性
-(BOOL)setAttributesOfItemAtPath:attr error:err //更改文件的屬性
2.使用目錄
-(NSString *)currentDirectoryPath //獲取當(dāng)前目錄
-(BOOL)changeCurrentDirectoryPath:path //更改當(dāng)前目錄
-(BOOL)copyItemAtPath:from toPath:to error:err //復(fù)制目錄結(jié)構(gòu)(to不能是已存在的)
-(BOOL)createDirectoryAtPath:path withIntermediateDirectories:(BOOL)flag attribute:attr //創(chuàng)建一個(gè)新目錄
-(BOOL)fileExistAtPath:path isDirectory:(BOOL*)flag //測(cè)試文件是不是目錄(flag中儲(chǔ)存結(jié)果YES/NO)
-(NSArray *)contentsOfDirectoryAtPath:path error:err //列出目錄內(nèi)容
-(NSDirectoryEnumerator *)enumeratorAtPath:path //枚舉目錄的內(nèi)容
-(BOOL)removeItemAtPath:path error:err //刪除空目錄
-(BOOL)moveItemAtPath:from toPath:to error:err //重命名或移動(dòng)一個(gè)目錄(to不能是已存在的)
3、常用路徑工具方法
+(NSString *)pathWithComponens:components //根據(jù)components中的元素構(gòu)造有效路徑
-(NSArray *)pathComponents //析構(gòu)路徑厨埋,獲得組成此路徑的各個(gè)部分
-(NSString *)lastPathComponent //提取路徑的最后一個(gè)組成部分
-(NSString *)pathExtension //從路徑的最后一個(gè)組成部分中提取其擴(kuò)展名
-(NSString *)stringByAppendingPathComponent:path //將path添加到現(xiàn)有路徑的末尾
-(NSString *)stringByAppendingPathExtension:ext //將指定的擴(kuò)展名添加到路徑的最后一個(gè)組成部分
-(NSString *)stringByDeletingLastPathComponent //刪除路徑的最后一個(gè)組成部分
-(NSString *)stringByDeletingPathExtension //從文件的最后一部分刪除擴(kuò)展名
-(NSString *)stringByExpandingTileInPath //將路徑中代字符擴(kuò)展成用戶主目錄(~)或指定用戶的主目錄(~user)
-(NSString *)stringByresolvingSymlinksInPath //嘗試解析路徑中的符號(hào)鏈接
-(NSString *)stringByStandardizingPath //通過(guò)嘗試解析~邪媳、..(父目錄符號(hào))、.(當(dāng)前目錄符號(hào))和符號(hào)鏈接來(lái)標(biāo)準(zhǔn)化路徑
4揽咕、常用的路徑工具函數(shù)
NSString* NSUserName(void) //返回當(dāng)前用戶的登錄名
NSString* NSFullUserName(void) //返回當(dāng)前用戶的完整用戶名
NSString* NSHomeDirectory(void) //返回當(dāng)前用戶主目錄的路徑
NSString* NSHomeDirectoryForUser(NSString* user) //返回用戶user的主目錄
NSString* NSTemporaryDirectory(void) //返回可用于創(chuàng)建臨時(shí)文件的路徑目錄
5悲酷、常用的IOS目錄
Documents(NSDocumentDirectory) //用于寫(xiě)入應(yīng)用相關(guān)數(shù)據(jù)文件的目錄套菜,在ios中寫(xiě)入這里的文件能夠與iTunes共享并訪問(wèn)亲善,存儲(chǔ)在這里的文件會(huì)自動(dòng)備份到云端
Library/Caches(NSCachesDirectory) //用于寫(xiě)入應(yīng)用支持文件的目錄,保存應(yīng)用程序再次啟動(dòng)需要的信息逗柴。iTunes不會(huì)對(duì)這個(gè)目錄的內(nèi)容進(jìn)行備份
tmp(use NSTemporaryDirectory()) //這個(gè)目錄用于存放臨時(shí)文件蛹头,只程序終止時(shí)需要移除這些文件,當(dāng)應(yīng)用程序不再需要這些臨時(shí)文件時(shí),應(yīng)該將其從這個(gè)目錄中刪除
Library/Preferences //這個(gè)目錄包含應(yīng)用程序的偏好設(shè)置文件渣蜗,使用 NSUserDefault類進(jìn)行偏好設(shè)置文件的創(chuàng)建屠尊、讀取和修改
對(duì)于一個(gè)運(yùn)行在iPhone得app,它只能訪問(wèn)自己根目錄下的一些文件(所謂sandbox - 沙盒).
一個(gè)app發(fā)布到iPhone上后,它的目錄結(jié)構(gòu)如下:
1耕拷、其中得 app root 可以用 ?NSHomeDirectory() 訪問(wèn)到讼昆;
2、Documents 目錄就是我們可以用來(lái)寫(xiě)入并保存文件得地方骚烧,一般可通過(guò)下面的方式得到:
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, ? ?NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
3浸赫、tmp 目錄我們可以在里面寫(xiě)入一些程序運(yùn)行時(shí)需要用得數(shù)據(jù),里面寫(xiě)入得數(shù)據(jù)在程序退出后會(huì)沒(méi)有赃绊〖认浚可以通過(guò)
NSString *NSTemporaryDirectory(void); 方法得到;
4碧查、文件一些主要操作可以通過(guò)NSFileManage 來(lái)操作运敢,可以通過(guò) [NSFileManger defaultManger] 得到它得實(shí)例。
相關(guān)得一些操作:
a.創(chuàng)建一個(gè)目錄或者文件:
比如要在Documents下面創(chuàng)建一個(gè)test目錄忠售,
01 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
02 NSString *documentsDirectory = [paths objectAtIndex:0];
03 NSLog(@”%@”,documentsDirectory);
04 NSFileManager *fileManage = [NSFileManager defaultManager];
05 NSString *myDirectory = [documentsDirectory stringByAppendingPathComponent:@“test”];
06 BOOL ok = [fileManage createDirectoryAtPath:myDirectory attributes:nil];
比如要在Documents下面創(chuàng)建一個(gè)file.txt:
// 結(jié)果為:/Documents/file.txt NSString *filePath= [documentsDirectory stringByAppendingPathComponent:@"file.txt"];
b.取得一個(gè)目錄下得所有文件名:
1 //如上面的myDirectory)可用
2 NSArray *file = [fileManager subpathsOfDirectoryAtPath: myDirectory error:nil];
NSArray *files = [fileManager subpathsAtPath: myDirectory ];
c.讀取某個(gè)文件:
1 NSData *data = [fileManger contentsAtPath:myFilePath];//myFilePath是包含完整路徑的文件名或直接用NSData 的類方法: NSData *data = [NSData dataWithContentOfPath:myFilePath];
d.保存某個(gè)文件:
1 //可以用 NSFileManager的下列方法:
- (BOOL)createFileAtPath:(NSString *)path contents:(NSData *)data attributes:(NSDictionary *)attr;
或 NSData 的
- (BOOL)writeToFile:(NSString *)path atomically:(BOOL)useAuxiliaryFile;
- (BOOL)writeToFile:(NSString *)path options:(NSUInteger)writeOptionsMask error:(NSError **)errorPtr;
e.刪除某個(gè)文件:
1 //可以用 NSFileManager的下列方法:
//Removes the file or directory at the specified path.
- (BOOL)removeItemAtPath:(NSString *)path error:(NSError **)error
//Removes the file or directory at the specified URL.
- (BOOL)removeItemAtURL:(NSURL *)URL error:(NSError **)error
f.移動(dòng)某個(gè)文件或者重命名某文件
1 //想要重命名一個(gè)文件传惠,我們需要把文件移到一個(gè)新的路徑下。下面的代碼創(chuàng)建了我們所期望的目標(biāo)文件的路徑稻扬,然后請(qǐng)求移動(dòng)文件以及在移動(dòng)之后顯示文件目錄涉枫。
2 //通過(guò)移動(dòng)該文件對(duì)文件重命名
3 NSString *filePath2= [documentsDirectory stringByAppendingPathComponent:@"file2.txt"];
4 //判斷是否移動(dòng)
5 if ([fileManager moveItemAtPath:filePath toPath:filePath2 error:&error] != YES)
6 NSLog(@"Unable to move file: %@", [error localizedDescription]);
7 //顯示文件目錄的內(nèi)容
8 NSLog(@"Documentsdirectory: %@",[fileManager contentsOfDirectoryAtPath:documentsDirectoryerror:&error]);
iPhone官方SDK用于讀寫(xiě)數(shù)據(jù)的方法
我們知道,出于安全考慮腐螟,iPhone的官方SDK并不能像toolchain一樣隨意寫(xiě)文件愿汰。
注意:這兩個(gè)方法都是存儲(chǔ)在/Documents/里面。
01 bool writeApplicationData(NSData *data, NSString *fileName)
{
? ?NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
?NSString *documentsDirectory = [paths objectAtIndex:0];
? ?if (!documentsDirectory) { ? ? ? ?NSLog(@"Documents directory not found!");
? ? ? ?return NO;
? ? ? }
? ?NSString *appFile = [documentsDirectory stringByAppendingPathComponent:fileName];
? ?return ([data writeToFile:appFile atomically:YES]);
}
NSData *applicationDataFromFile(NSString *fileName)
{ ? NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
? NSString *documentsDirectory = [paths objectAtIndex:0];
? NSString *appFile = [documentsDirectory stringByAppendingPathComponent:fileName];
? NSData *myData = [[[NSData alloc] initWithContentsOfFile:appFile] autorelease];
return myData;
}