iosの下でファイルを移動する方法の概要

1905 ワード

このobjective cコードは、指定したパスの下のファイルを移動するために使用されます.
 
  
if ([fileManager copyItemAtPath:@"FilePath1"
  toPath:@"FilePath2"  error:NULL]) {
     NSLog(@"Copied successfully");
  }

方法2:
NSFileManagerの使用:ドキュメントのパスとキャッシュパスを使用します.すべてのファイルを移動してNSFileManagerを使用
 
  
- (void) moveAllDocs {
    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSError *error = nil;
    NSString *sourceDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
    NSString *destinationDirectory = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
    NSArray *contents = [fileManager contentsOfDirectoryAtPath:sourceDirectory error:&error];
    for(NSString *sourceFileName in contents) {
        NSString *sourceFile = [sourceDirectory stringByAppendingPathComponent:sourceFileName];
        NSString *destFile = [destinationDirectory stringByAppendingPathComponent:sourceFileName];
        if(![fileManager moveItemAtPath:sourceFile toPath:destFile error:&error]) {
            NSLog(@"Error: %@", error);
        }
    }
}

方法3:
FCFileManagerは、NSFileManager上に構築されたiOSファイル管理ツールであり、ファイル管理をシンプル化しています.最も一般的な操作を実行するために数行のコードを使用する多くの静的方法を提供します.デフォルトのファイルディレクトリで、相対パスを使用できますが、他のディレクトリで簡単に作業できます.
Move file:
 
  
[FCFileManager moveItemAtPath:@"test.txt" toPath:@"tests/test.txt"];

Remove file:
 
  
//remove file at the specified path
[FCFileManager removeItemAtPath:@"test.txt"];

以上述べた内容はすべて本文の内容で、みんなが好きになることを望みます.