iOS-ファイル処理
ファイルの処理はアプリケーションでは視覚的に説明できないため、ファイルの処理に使用される主な方法を以下に説明します。アプリケーションバンドルには読み取り権限しかなく、ファイルを変更することはできないことに注意してください。とにかく、アプリケーションのドキュメントディレクトリを変更できます。
ファイル処理で使用されるメソッド
に使用される方法 accessing そして manipulatingファイルについては以下で説明します。ここでは、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");
}
2つのファイルの内容を比較する
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];