What is the most performant way to check if two fi...
# squarelibraries
d
What is the most performant way to check if two files have equal contents with
okio
? The trivial thing to do is something like
bufferedSource.readUtf8() == otherSource.readUtf8()
but I suspect it's not that good to do this.