iOS - tratamento de arquivos

O manuseio de arquivos não pode ser explicado visualmente com o aplicativo e, portanto, os principais métodos usados ​​para o manuseio de arquivos são explicados abaixo. Observe que o pacote do aplicativo tem apenas permissão de leitura e não poderemos modificar os arquivos. Você pode modificar o diretório de documentos do seu aplicativo de qualquer maneira.

Métodos usados ​​no tratamento de arquivos

Os métodos usados ​​para accessing e manipulatingos arquivos são discutidos abaixo. Aqui, temos que substituir as strings FilePath1, FilePath2 e FilePath por nossos caminhos de arquivo completos necessários para obter a ação desejada.

Verifique se um arquivo existe em um caminho

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");
}

Comparando o conteúdo de dois arquivos

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

Verifique se gravável, legível e executável

if ([fileManager isWritableFileAtPath:@"FilePath"]) {
   NSLog(@"isWritable");
}

if ([fileManager isReadableFileAtPath:@"FilePath"]) {
   NSLog(@"isReadable");
}

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

Mover arquivo

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

Copiar arquivo

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

Remover arquivo

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

Ler arquivo

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

Gravar arquivo

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