選択したファイルを自分のコンピューターから同じネットワーク上の別のコンピューターにコピーしたいと考えています。NSFileManager を使用しようとしましたが、成功しませんでした。それを行う方法を教えてください。
NSFileManager *fileManager = [[NSFileManager alloc] init];
NSString * filePath = [NSHomeDirectory() stringByAppendingPathComponent:
[NSString stringWithFormat:@"Documents/test"]];
NSString * filePath2 = [NSHomeDirectory() stringByAppendingPathComponent:
[NSString stringWithFormat:@"Shared/Test"]];
[fileManager copyItemAtPath:filePath toPath:filePath2 error:NULL];
[fileManager release];