Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Check if two files are the same in Cocoa

How do you efficiently check if two files are the same (have the same data) in Cocoa?

Context: I'm writing a program that receives a file as input (input file) and copies it into a directory. If the directory already contains a file with the same name (namesake file) then the input file should be copied with a new name only if the namesake file is different.

like image 634
hpique Avatar asked Aug 28 '12 18:08

hpique


Video Answer


2 Answers

you can use -[NSFileManager contentsEqualAtPath:andPath:].

From the Docs:

If path1 and path2 are directories, the contents are the list of files and subdirectories each contains—contents of subdirectories are also compared. For files, this method checks to see if they’re the same file, then compares their size, and finally compares their contents. This method does not traverse symbolic links, but compares the links themselves.

like image 125
justin Avatar answered Sep 19 '22 09:09

justin


While Justin answered my question, I was using NSFileWrapper internally so I couldn't always use contentsEqualAtPath:andPath:.

In case it helps anyone, here's what I wrote to compare the contents of a NSFileWrapper to the contents of a file:

- (BOOL) contentsOfFileWrapper:(NSFileWrapper*)fileWrapper equalContentsAtPath:(NSString*)path {        
    NSDictionary *fileAttrs = [[NSFileManager defaultManager] attributesOfItemAtPath:path error:nil];
    NSUInteger fileSize = [attrs fileSize];
    NSUInteger fileWrapperSize = [fileWrapper.fileAttributes fileSize];  // Will return zero if the file wrapper hasn't been written
    if (fileWrapperSize > 0 && fileSize != fileWrapperSize) return NO;

    NSData *fileData = [NSData dataWithContentsOfURL:fileURL];
    NSData *fileWrapperData = fileWrapper.regularFileContents;
    return [fileData isEqualToData:resourceData];
}

As Justin suggested, I'm only using the above method if I'm unable to reconstruct the path of the file wrapper. If I can, then I use contentsEqualAtPath:andPath:.

like image 42
hpique Avatar answered Sep 19 '22 09:09

hpique