반응형
// 두 파일의 내용 비교하기.
NSFileManager *filemgr = [NSFileManager defaultManager];
if ([filemgr contentsEqualAtPath:@"fileName1" andPath:@"fileName2"] == YES)
{
NSLog(@"File contents match");
}
else
{
NSLog(@"File contents do not match");
}
반응형
'IPHONE' 카테고리의 다른 글
파일 옮기기와 이름 바꾸기. (0) | 2014.01.07 |
---|---|
파일의 Readable/Writable/Executable/Deletable 상태 확인하기. (0) | 2014.01.07 |
파일이 존재하는지 확인하기. (0) | 2014.01.07 |
디렉터리 내용 목록 표시하기. (0) | 2014.01.06 |
UITableViewController에서 테이블과 상태바가 겹치지 않게 하는 코드 (0) | 2014.01.03 |