位置:首頁 > 高級語言 > Objective-C教學 > Objective-C 文件處理

Objective-C 文件處理

文件處理在 NSFileManager類的幫助下可實現大多數文件操作功能。

文件處理的方法

下麵列出的方法用於訪問和操作文件列表。在這裡,我們必須替換, FilePath1, FilePath2 和 FilePath 我們所需的完整的文件路徑字符串,以獲得所需的動作。

檢查一個路徑文件是否存在

   NSFileManager *fileManager = [NSFileManager defaultManager];
   //Get documents directory
   NSArray *directoryPaths = NSSearchPathForDirectoriesInDomains
   (NSDocumentDirectory, NSUserDomainMask, YES);
   NSString *documentsDirectoryPath = [directoryPaths objectAtIndex:0];
   if ([fileManager fileExistsAtPath:@""]==YES) {
        NSLog(@"File exists");
    }    

比較兩個文件的內容

   if ([fileManager contentsEqualAtPath:@"FilePath1" andPath:@" FilePath2"]) {
      NSLog(@"Same content");
   }

檢查是否可寫,可讀和可執行

   if ([fileManager isWritableFileAtPath:@"FilePath"]) {
      NSLog(@"isWritable");
   }
   if ([fileManager isReadableFileAtPath:@"FilePath"]) {
      NSLog(@"isReadable");
   }
   if ( [fileManager isExecutableFileAtPath:@"FilePath"]){
      NSLog(@"is Executable");
   }

移動文件

   if([fileManager moveItemAtPath:@"FilePath1" 
   toPath:@"FilePath2" error:NULL]){
      NSLog(@"Moved successfully");
   }

複製文件

   if ([fileManager copyItemAtPath:@"FilePath1" 
   toPath:@"FilePath2"  error:NULL]) {
      NSLog(@"Copied successfully");
   }

刪除文件

   if ([fileManager removeItemAtPath:@"FilePath" error:NULL]) {
      NSLog(@"Removed successfully");
   }

讀取文件

   NSData *data = [fileManager contentsAtPath:@"Path"];

寫文件

   [fileManager createFileAtPath:@"" contents:data attributes:nil];

我們已經成功上了解到的各種文件的訪問和操作技術,現在知道使用各種操作的文件和文件了吧?!