Best way to check new-line-independent-identity of 2 files with python
I tried
filecmp.cmp(file1,file2)
but 开发者_Go百科it doesn't work since files are identically except for new line characters. Is there an option for that in filecmp or some other convenience function/library or do I have to read both files line by line and compare those?
I think a simple convenience function like this should do the job:
from itertools import izip
def areFilesIdentical(filename1, filename2):
with open(filename1, "rtU") as a:
with open(filename2, "rtU") as b:
# Note that "all" and "izip" are lazy
# (will stop at the first line that's not identical)
return all(myprint() and lineA == lineB
for lineA, lineB in izip(a.xreadlines(), b.xreadlines()))
Try the difflib
module - it provides classes and functions for comparing sequences.
For your needs, the difflib.Differ
class looks interesting.
class difflib.Differ
This is a class for comparing sequences of lines of text, and producing human-readable differences or deltas. Differ uses SequenceMatcher both to compare sequences of lines, and to compare sequences of characters within similar (near-matching) lines.
See the differ example, that compares two texts. The sequences being compared can also be obtained from the readlines()
method of file-like objects.
Looks like you just need to check if files are same or not ignoring whitespace/newlines.
You can use a function like this
def do_cmp(f1, f2):
bufsize = 8*1024
fp1 = open(f1, 'rb')
fp2 = open(f2, 'rb')
while True:
b1 = fp1.read(bufsize)
b2 = fp2.read(bufsize)
if not is_same(b1, b2):
return False
if not b1:
return True
def is_same(text1, text2):
return text1.replace("\n","") == text2.replace("\n","")
you can improve is_same
so that it matches according to your requirements e.g. you may ignore case too.
精彩评论