iPhone文件系統NSFileManager講解是本文要介紹的內容,主要是經過iphone文件系統來學習NSFileManager的使用方法,具體內容來看本文詳解。數組
iPhone文件系統:建立、重命名以及刪除文件,NSFileManager中包含了用來查詢單詞庫目錄、建立、重命名、刪除目錄以及獲取/設置文件屬性的方法(可讀性,可編寫性等等)。iphone
每一個程序都會有它本身的沙盒,經過它你能夠閱讀/編寫文件。寫入沙盒的文件在程序的進程中將會保持穩定,即使實在程序更新的狀況下。學習
以下所示,你能夠在沙盒中定位文件目錄:atom
//對於錯誤信息 spa
NSError *error; code
// 建立文件管理器 orm
NSFileManager *fileMgr = [NSFileManagerdefaultManager]; 進程
//指向文件目錄 ip
NSString *documentsDirectory= [NSHomeDirectory() 開發
stringByAppendingPathComponent:@"Documents"];
//建立一個目錄
[[NSFileManager defaultManager] createDirectoryAtPath: [NSString stringWithFormat:@"%@/myFolder", NSHomeDirectory()] attributes:nil];
建立一個文件
如今咱們已經有了文件目錄,咱們就能使用這個路徑在沙盒中建立一個新文件並編寫一段代碼:
// File we want to create in the documents directory咱們想要建立的文件將會出如今文件目錄中 // Result is: /Documents/file1.txt結果爲:/Documents/file1.txt NSString *filePath= [documentsDirectory stringByAppendingPathComponent:@"file1.txt"]; //須要寫入的字符串 NSString *str= @"iPhoneDeveloper Tips\nhttp://iPhoneDevelopTips,com"; //寫入文件 [str writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error]; //顯示文件目錄的內容 NSLog(@"Documentsdirectory: %@", [fileMgr contentsOfDirectoryAtPath:documentsDirectoryerror:&error]);
咱們爲想要建立的文件構建一條路徑(file1.txt),初始化一個字符串來寫入文件,並列出目錄。最後一行顯示了在咱們建立文件以後出如今文件目錄下的一個目錄列表:
對一個文件重命名
想要重命名一個文件,咱們須要把文件移到一個新的路徑下。下面的代碼建立了咱們所指望的目標文件的路徑,而後請求移動文件以及在移動以後顯示文件目錄。
//經過移動該文件對文件重命名 NSString *filePath2= [documentsDirectory stringByAppendingPathComponent:@"file2.txt"]; //判斷是否移動 if ([fileMgr moveItemAtPath:filePath toPath:filePath2 error:&error] != YES) NSLog(@"Unable to move file: %@", [error localizedDescription]); //顯示文件目錄的內容 NSLog(@"Documentsdirectory: %@", [fileMgr contentsOfDirectoryAtPath:documentsDirectoryerror:&error]);
在移動了文件以後,輸出結果應該以下圖所示:
刪除一個文件
爲了使這個技巧完整,讓咱們再一塊兒看下如何刪除一個文件:
//在filePath2中判斷是否刪除這個文件 if ([fileMgr removeItemAtPath:filePath2 error:&error] != YES) NSLog(@"Unable to delete file: %@", [error localizedDescription]); //顯示文件目錄的內容 NSLog(@"Documentsdirectory: %@", [fileMgr contentsOfDirectoryAtPath:documentsDirectoryerror:&error]);
一旦文件被刪除了,正如你所預料的那樣,文件目錄就會被自動清空:
這些示例能教你的,僅僅只是文件處理上的一些皮毛。想要得到更全面、詳細的講解,你就須要掌握NSFileManager文件的知識。
在開發iPhone程序時,有時候要對文件進行一些操做。而獲取某一個目錄中的全部文件列表,是基本操做之一。經過下面這段代碼,就能夠獲取一個目錄內的文件及文件夾列表。
NSFileManager *fileManager = [NSFileManager defaultManager]; //在這裏獲取應用程序Documents文件夾裏的文件及文件夾列表 NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentDir = [documentPaths objectAtIndex:0]; NSError *error = nil; NSArray *fileList = [[NSArray alloc] init]; //fileList即是包含有該文件夾下全部文件的文件名及文件夾名的數組 fileList = [fileManager contentsOfDirectoryAtPath:documentDir error:&error];
如下這段代碼則能夠列出給定一個文件夾裏的全部子文件夾名
NSMutableArray *dirArray = [[NSMutableArray alloc] init]; BOOL isDir = NO; //在上面那段程序中得到的fileList中列出文件夾名 for (NSString *file in fileList) { NSString *path = [documentDir stringByAppendingPathComponent:file]; [fileManager fileExistsAtPath:path isDirectory:(&isDir)]; if (isDir) { [dirArray addObject:file]; } isDir = NO; } NSLog(@"Every Thing in the dir:%@",fileList); NSLog(@"All folders:%@",dirArray);