반응형
// 파일 복사하기.
NSFileManager *filemgr = [NSFileManager defaultManager];
if ([filemgr copyItemAtPath:@"fromFilePath" toPath:@"toFilePath" error:NULL] == YES)
{
NSLog(@"Copy successful");
}
else
{
NSLog(@"Copy failed");
}
반응형
'IPHONE' 카테고리의 다른 글
Symbolic Link 만들기. (0) | 2014.01.07 |
---|---|
파일 제거하기. (0) | 2014.01.07 |
파일 옮기기와 이름 바꾸기. (0) | 2014.01.07 |
파일의 Readable/Writable/Executable/Deletable 상태 확인하기. (0) | 2014.01.07 |
두 파일의 내용 비교하기. (0) | 2014.01.07 |